我尝试将主页重定向到一个新网址
和
所有内页到另一个网址
我正在使用
RewriteEngine On
RewriteRule ^(.*) http://example.com [R=301,L]
RewriteRule (.*) http://special.example.com/$1 [R=301,L]
答案 0 :(得分:1)
尝试:
RewriteEngine On
RewriteRule ^$ http://example.com [R=301,L]
RewriteRule (.*) http://special.example.com/$1 [R=301,L]