【问题标题】:301 redirect for all pages with specific url pattern具有特定 url 模式的所有页面的 301 重定向
【发布时间】: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

【问题讨论】:

    标签: php .htaccess redirect


    【解决方案1】:

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

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2022-01-01
      • 2020-03-11
      • 2013-10-05
      • 1970-01-01
      • 2012-12-21
      相关资源
      最近更新 更多