<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1029645" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1029645</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/search-engine-friendly-urls#comment-1173807</link>
    <description> &lt;p&gt;are you trying to get cat_sell27.html ?&lt;br /&gt;
If cid is always going to be a number, just use ([0-9]*)&lt;/p&gt;
&lt;p&gt;RewriteEngine on&lt;br /&gt;
RewriteRule ^cat_sell([0-9]*).html$ cat_sell.php?cid=$1&lt;/p&gt;
&lt;p&gt;if you want to use a dot ot dash, just add it before the first bracket.&lt;br /&gt;
if cid can be a name (letters), just add [a-z] after the [0-9]&lt;/p&gt;
&lt;p&gt;This question was answered in your other thread, please refrain from spamming the threads with the same question, the other threads have been removed&lt;/p&gt;
 </description>
     <pubDate>Mon, 27 Jun 2005 10:09:52 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1173807 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/search-engine-friendly-urls#comment-1173806</link>
    <description> &lt;p&gt;Why bother for a single parameter? SE have no problems with up to 3 parameters and sometimes more if the site is deemed as important.&lt;/p&gt;
 </description>
     <pubDate>Mon, 27 Jun 2005 10:02:49 +0000</pubDate>
 <dc:creator>chrishirst</dc:creator>
 <guid isPermaLink="false">comment 1173806 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>search engine friendly URL .htaccess problem</title>
    <link>https://www.webmaster-forums.net/webmasters-corner/search-engine-friendly-urls#comment-1173800</link>
    <description> &lt;p&gt;Hi busy!&lt;br /&gt;
I want to change my database links into .html links, I read on net about .htaccess file that we can change our database link into simple statis links useing rewirte engine commands. please sort out my problem my links shows as &lt;a href=&quot;http://www.efaisalabad.com/cat_sell.php?cid=27&quot; title=&quot;www.efaisalabad.com/cat_sell.php?cid=27&quot;&gt;www.efaisalabad.com/cat_sell.php?cid=27&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;in .htaccess file i use this method&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
RewriteRule ^cat_sell(0-9).html$ cat_sell.php?cid=$1&lt;/p&gt;
&lt;p&gt;but its is not working please check and give me solution&lt;/p&gt;
&lt;p&gt;I am waiting your quick responce&lt;/p&gt;
&lt;p&gt;mianriz&lt;/p&gt;
 </description>
     <pubDate>Mon, 27 Jun 2005 03:00:36 +0000</pubDate>
 <dc:creator>mianriz</dc:creator>
 <guid isPermaLink="false">comment 1173800 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/search-engine-friendly-urls#comment-1173476</link>
    <description> &lt;p&gt;Do you know if your host has rewrite on?&lt;/p&gt;
&lt;p&gt;you can always force it on anyways, in notepad or similar add the following&lt;/p&gt;
&lt;p&gt;Options +FollowSymlinks&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
RewriteRule ^news-reader([0-9]*).php news-reader.php?page=$1 [L] &lt;/p&gt;
&lt;p&gt;save as .htaccess&lt;br /&gt;
which will convert &lt;a href=&quot;http://www.mysite.com/news_reader.php?page=1&quot; class=&quot;bb-url&quot;&gt;mysite.com/news_reader.php?page=1&lt;/a&gt; to &lt;a href=&quot;http://www.mysite.com/news_reader1.php&quot; class=&quot;bb-url&quot;&gt;mysite.com/news_reader1.php&lt;/a&gt; you can even loose the .php if you wish.&lt;/p&gt;
&lt;p&gt;if you want to force no file extension, add&lt;/p&gt;
&lt;p&gt;ForceType application/x-httpd-php&lt;/p&gt;
&lt;p&gt;Note windows doesnt like saving files without a name so will need a text editor to name it&lt;/p&gt;
 </description>
     <pubDate>Mon, 20 Jun 2005 22:44:56 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1173476 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/search-engine-friendly-urls#comment-1173448</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;Google wrote:&lt;/strong&gt; If you decide to use dynamic pages (i.e., the URL contains a &quot;?&quot; character), be aware that not every search engine spider crawls dynamic pages as well as static pages. It helps to keep the parameters short and the number of them few.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Google&#039;s guidelines with regards to dynamic URLs is rather dubious.&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:  be aware that not every search engine spider crawls dynamic pages as well as static pages&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Is Google referring to their own spiders or not? Or are they giving us a little friendly advice on how to ensure indexing by lesser SEs? &lt;/p&gt;
&lt;p&gt;While I am contempating the presense of a &quot;?&quot; in my database driven pages, perhaps I should go have a look at Mod Rewrite. But without access to the servers, is it something I can implement or is it up to the server admin?&lt;/p&gt;
 </description>
     <pubDate>Mon, 20 Jun 2005 13:58:54 +0000</pubDate>
 <dc:creator>Atlantis</dc:creator>
 <guid isPermaLink="false">comment 1173448 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/search-engine-friendly-urls#comment-1173426</link>
    <description> &lt;p&gt;Google actually has on their site&lt;br /&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;Quote: Don&#039;t use &quot;&amp;amp;id=&quot; as a parameter in your URLs, as we don&#039;t include these pages in our index.&lt;/blockquote&gt;&lt;/p&gt;
&lt;p&gt; from &lt;a href=&quot;http://www.google.com/webmasters/guidelines.html&quot; class=&quot;bb-url&quot;&gt;http://www.google.com/webmasters/guidelines.html&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 20 Jun 2005 08:02:01 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1173426 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/search-engine-friendly-urls#comment-1173410</link>
    <description> &lt;p&gt;a single parameter is nothing to worry about, when it&#039;s 3 or more &lt;strong&gt;then&lt;/strong&gt; you can have problems. &lt;/p&gt;
&lt;p&gt;I think there are other things there that are more likely to lose rankings &lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: For the longest time I couldn&#039;t figure out why content on my site was not making it onto SERPs when other sites with the exact same content were&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Exact same content is &lt;strong&gt;NOT&lt;/strong&gt; what SEs want and duplicates will be filtered out.&lt;/p&gt;
 </description>
     <pubDate>Sun, 19 Jun 2005 22:59:02 +0000</pubDate>
 <dc:creator>chrishirst</dc:creator>
 <guid isPermaLink="false">comment 1173410 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/search-engine-friendly-urls#comment-1173408</link>
    <description> &lt;p&gt;Ok, so can a line be drawn?&lt;/p&gt;
&lt;p&gt;I followed the link you provided above and the original poster in that forum thread had the variable &quot;ID&quot; twice in his dynamic URL. From what I understand and unless I&#039;m mistaken, Google throws out what it believes to be affiliate pages and that looks like an affiliate page URL. &lt;/p&gt;
&lt;p&gt;I sort of have proof of the statement I just made because when the customized content management system I use for sites was written (it&#039;s still being written) it generated pages with URLs thusly: &lt;/p&gt;
&lt;p&gt;hhtp://www.mysite.com/news_reader.php?id=1&lt;/p&gt;
&lt;p&gt;For the longest time I couldn&#039;t figure out why content on my site was not making it onto SERPs when other sites with the exact same content were. So, I was told to look for the problem in the URL (ie: Did I use &quot;id&quot; as the incremental variable? ... YES!). He said to change that to something that wouldn&#039;t be associated with programs like MLM and other situations where hundreds of the exact same content exist, only with a different affiliate code in the URL. &lt;/p&gt;
&lt;p&gt;So, I changed to value to &quot;page&quot; instead and with a day (or two), my articles were indexed right along with everybody else&#039;s. And my buddy got a well-deserved thank you.&lt;/p&gt;
&lt;p&gt;But, I&#039;m still left with this: &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.mysite.com/news_reader.php?page=1&quot; class=&quot;bb-url&quot;&gt;http://www.mysite.com/news_reader.php?page=1&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I&#039;ve read in places that I shoot the goat with SEs (Google, specifically) as soon as the &quot;?&quot; shows up in the URL. I&#039;ve also read that it&#039;s even worse having an ampersand in the URL. &lt;/p&gt;
&lt;p&gt;So, is my current URL format causing me to lose ranking?&lt;/p&gt;
 </description>
     <pubDate>Sun, 19 Jun 2005 22:44:28 +0000</pubDate>
 <dc:creator>Atlantis</dc:creator>
 <guid isPermaLink="false">comment 1173408 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/search-engine-friendly-urls#comment-1173402</link>
    <description> &lt;p&gt;&lt;a href=&quot;http://www.highrankings.com/forum/index.php?showtopic=13153&quot; class=&quot;bb-url&quot;&gt;URL Rewriting&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 19 Jun 2005 21:47:34 +0000</pubDate>
 <dc:creator>chrishirst</dc:creator>
 <guid isPermaLink="false">comment 1173402 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
