我有重复的网址。
第一个网址http://www.mydomain.com/product_info.php/cPath/34_128/products_id/2440
第二个网址http://www.mydomain.com/product_info.php/products_id/2440
什么是.htaccess条目,以便第一个网址中的所有网址都被301重定向到第二个网址
http://www.mydomain.com/product_info.php/products_id/2440
非常感谢任何帮助
答案 0 :(得分:0)
您可以尝试使用mod_alias(Redirect / RedirectMatch)或mod_rewrite(RewriteRule)。如果你已经在某处有重写规则,你可能只想坚持使用mod_rewrite,否则可能会有冲突。
mod_alias中:
Redirect 301 /product_info.php/cPath/ /product_info.php/
mod_rewrite的:
RewriteEngine On
RewriteRule ^/?product_info.php/cPath/(.*)$ /product_info.php/$1 [L,R=301]