从旧域重定向到新域不起作用


Redirect from old domain to new domain not work

我尝试从旧域重定向到新域,通过下面的代码,但不起作用,哪里有错误。

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index'.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www'.mydomain'.com$
RewriteRule ^/?$ "http':'/'/mydomain'.com'/" [R=301,L]
</IfModule>
# END WordPress

您需要在WP捕获所有规则之前放置重定向规则,否则在新域上重定向后只会得到index.php

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www'.)?domain'.com$ [NC]
RewriteRule ^ http://newdomain.com%{REQUEST_URI} [NE,R=301,L]
RewriteRule ^index'.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>