Posted - 01/17/2017 : 18:46:06
Yes ! So many times this Forum comes up with the exact solution you need How to redirect www. example .com/proddetail.php?prod=SH-CRANK-KIT to www. example .com/proddetail.php?prod=SH-CRANK-NEW-KIT Here are the " .htaccess" file entries that achieve the proddetail.php page redirect, as described in that example. # ====================================================== # URL Redirects for proddetail.php pages # ====================================================== RewriteCond %{QUERY_STRING} ^prod=SH-CRANK-KIT RewriteRule ^proddetail\.php$ http:// www. example .com/proddetail.php?prod=SH-CRANK-NEW-KIT [R=301,L]
Just delete the spaces I put in the www. example .com URL above. Please, can this topic be transferred into the " Advanced Tips and Tricks" forum so it is not lost ? Gary
|