如何使用.htaccess将任何/ promotion / * URL重定向到/ *?

时间:2010-02-23 01:36:24

标签: apache .htaccess redirect

我需要将对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完成?

2 个答案:

答案 0 :(得分:0)

RewriteRule ^/promotion/(.*)$ /$1 [R=301]

答案 1 :(得分:0)

是这样的:

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

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