【问题标题】:How to redirect any /promotion/* URLs to just /* with .htaccess?如何使用.htaccess 将任何/promotion/* URL 重定向到/*?
【发布时间】:2010-02-23 09:47:58
【问题描述】:

我需要将任何对 mysite.com/promotion/* 页面的请求重定向到 mysite.com/*,所以举几个例子:

  • mysite.com/promotion/some/page.html 将重定向到 mysite.com/some/page.html
  • mysite.com/promotion/another-page.html 将重定向到 mysite.com/another-page.html

如何使用 .htaccess 来做到这一点?

【问题讨论】:

    标签: apache .htaccess redirect


    【解决方案1】:
    RewriteRule ^/promotion/(.*)$ /$1 [R=301]
    

    【讨论】:

    • 这不会只是从 URL 中删除促销,但仍然提供相同的内容吗?我想将用户从 /promotion/whatever 重定向到 /whatever。
    【解决方案2】:

    是这样的吗:

    Redirect permanent /promotion/ http://www.mysite.com/
    

    我没有意识到它会像那样自动递归地工作,但它似乎工作正常。

    【讨论】:

      猜你喜欢
      • 2021-05-18
      • 1970-01-01
      • 2013-09-08
      • 2019-03-03
      • 2010-11-12
      • 2014-09-25
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多