【发布时间】:2016-08-29 19:34:18
【问题描述】:
有一个链接 example.com/shop/product-1
现在链接是 example.com/newshop/product-1
我尝试使用 htaccess 规则从 /shop/ 重定向到 /newshop/
RewriteRule ^(.*)shop(.*)$ $1newshop$2 [QSA,L,R=301,NC]
不起作用。哪里出错了?
【问题讨论】:
有一个链接 example.com/shop/product-1
现在链接是 example.com/newshop/product-1
我尝试使用 htaccess 规则从 /shop/ 重定向到 /newshop/
RewriteRule ^(.*)shop(.*)$ $1newshop$2 [QSA,L,R=301,NC]
不起作用。哪里出错了?
【问题讨论】:
您可以使用以下重定向
Redirect 301 /shop/ /newshop/
这会将 /shop/.* 重定向到 /newshop/.*
【讨论】: