|
I have had some work done to make our .php pages more SEO friendly.
PHP search pages are now made to look like standard URLs using this code:
RewriteRule ^p_(.*).htm$ http://www.freshgadgets.co.uk/products.php?q=$1
So, that way you can go to, for example: /p_productname.htm instead of /products.php?q=productname.
However, "products.php?q=..." pages are still listed in search engines, so I need some code to (permantly 301) redirect the pages to the new format.
Thanks
|