0

我有重复的网址。

第一个 URL http://www.mydomain.com/product_info.php/cPath/34_128/products_id/2440

第二个网址http://www.mydomain.com/product_info.php/products_id/2440

什么是 .htaccess 条目,以便第一个 url 中的所有 url 将 301 重定向到第二个 url

http://www.mydomain.com/product_info.php/products_id/2440

非常感谢任何帮助

4

1 回答 1

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]
于 2012-10-22T10:48:10.040 回答