Hi, I have one question. How can we optimize dynamic URL and what is the step we have to follow to optimize Dynamic Webite............... Thanks in advance.
Do you mean how to change a URL like this: www. examplesite.com/productspage.php?id=1234&cat=123 into something like this: www. examplesite.com/products/[category]/[product id] ?
1. Search engines have problems creating links to dynamic content. 2. If you can recognize these problems, you are halfway to getting your dynamic content indexed. 3. Where practical, use static URLs to reference dynamic content. 4. Otherwise, try to ensure your dynamic URL is linked to by content referenced by static URLs. 5. Consider using paid-inclusion programs.
Where possible, try to minimise the number of variables passed in the URL. If you want to get a result like the above example I gave, you need to know a little bit about your .htaccess file settings. In this file, you need to write the following: Options +FollowSymLinks RewriteEngine on ...then you can tell browers to "rewrite" a URL, without redirecting by doing the following: RewriteRule ^products/([^/\.]+)/([^/\.]+)/?$ productspage.php?cat=$1&id=$1 This rule will tell the browser that the following URL: www. example.com/products/garden/ponds ...is actually this URL: www. example.com/productspage.php?cat=garden&id=ponds Hope that makes sense!