Dear friends If i have a following URL [u ]http://www.example.com/listProduct.php?searchOption=cid&searchKeyword=511 How can i forward this url to [u) http://www.example.com/nameofproductcategory/nameofproduct/ ]
http://www.blazed-up.com/2007/04/correct-url-seo-improvement/ The 3rd paragraph. Same concept really. If it doesn't work you can always remove the code. Hope it helps -BlaZeR
Options +FollowSymLinks +Indexes RewriteEngine on RewriteBase / RewriteRule ^([^.]+)/([^.]+)/([^.]+)/$ listProduct.php?searchOption=cid&searchKeyword=$1 [L] and you have to edit the script so it links to http://www.example.com/searchKeyword/nameofproductcategory/nameofproduct/ with no spaces and special characters.