301重定向具有特定网址格式的所有网页

时间:2016-03-06 04:36:45

标签: php .htaccess redirect

想要将具有特定网址格式的所有网页重定向到我的新主页

使用以下模式重定向所有请求

 http://somesite.com/pages/homepage/<Anything>

要重定向的示例网址

 http://somesite.com/pages/homepage/?pn=1&cat=71

要重定向的新页面

 http://somesite.com

1 个答案:

答案 0 :(得分:1)

您可以将此规则用作root .htaccess中的第一条规则:

RewriteEngine On

RewriteRule ^pages/homepage(/.*)?$ /? [L,NC,R=301]