整个网站的重定向301,例外

时间:2017-08-22 05:15:35

标签: .htaccess redirect

我一直无法找到可靠的解决方案。

我想将所有域名重定向到新域名,即

www.olddomain.com/post236重定向到www.newdomain / posts236

但我有几个例外

即。 www.olddomain.com/about-us/重定向到www.newdomain.com/about /

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以在htaccess中使用以下重定向:

RedirectMatch 301 ^/about-us/?$ http://newdomain.com/about
RedirectMatch 301 ^/(.*)$ http://newdomain.com/$1

注意:第二行重定向来自旧域的所有请求。如果您在重定向方面有更多例外,请将它们放在此之上。