我有一个 WordPress 博客,我正在尝试重定向到一个新域。301 重定向有效,但它重定向到 newdomain.comnew-post 而不是 newdomain.com/new-post。
不知何故,它正在剥离斜线。这是代码:
# 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]
</IfModule>
# END WordPress
Redirect 301 /old-post/ http://www.newdomain.com/new-post/
我错过了什么?