我试图将主页重定向到一个新的URL和内部页面到子域

时间:2016-10-26 05:26:44

标签: .htaccess

我尝试将主页重定向到一个新网址

所有内页到另一个网址

我正在使用

RewriteEngine On
RewriteRule ^(.*) http://example.com [R=301,L]
RewriteRule (.*) http://special.example.com/$1 [R=301,L]

1 个答案:

答案 0 :(得分:1)

尝试:

RewriteEngine On
RewriteRule ^$ http://example.com [R=301,L]
RewriteRule (.*) http://special.example.com/$1 [R=301,L]