Http重定向除了一页以外的所有

时间:2014-07-04 10:32:48

标签: .htaccess http redirect

有人可以建议如何将所有内容从https:// {url} / $ 1重定向到https:// {url} / content到{url2} / $ 1

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

可能是这样的:

RewriteEngine On
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} yourfirstdomain.com
RewriteRule ^(?!content)(.*) https://yourseconddomain.com/$1 [NE,L,R]