我正在尝试使用.htaccess文件重定向但它无法正常工作。语法似乎是正确的。有没有人有任何不正确的想法?
# 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 /www.easycovertarp.com/ http://www.aeroindustries.com/products/easy-cover/
&#13;
答案 0 :(得分:2)
在RewriteBase
行:
RewriteCond %{HTTP_HOST} =local.aero.com
RewriteRule ^/?$ http://www.aeroindustries.com/products/easy-cover/ [L,R=301]
在mod_rewrite规则中排序很重要,因此必须将此规则置于显示的WP规则之上。