【发布时间】:2016-03-06 04:36:45
【问题描述】:
想要将所有具有特定 url 模式的页面重定向到我的新主页
使用以下模式重定向所有请求
http://somesite.com/pages/homepage/<Anything>
要重定向的示例网址
http://somesite.com/pages/homepage/?pn=1&cat=71
要重定向的新页面
http://somesite.com
【问题讨论】:
想要将所有具有特定 url 模式的页面重定向到我的新主页
使用以下模式重定向所有请求
http://somesite.com/pages/homepage/<Anything>
要重定向的示例网址
http://somesite.com/pages/homepage/?pn=1&cat=71
要重定向的新页面
http://somesite.com
【问题讨论】:
您可以将此规则用作根 .htaccess 中的第一条规则:
RewriteEngine On
RewriteRule ^pages/homepage(/.*)?$ /? [L,NC,R=301]
【讨论】: