我正在使用托管多个域的服务器。我创建了一个.htaccess文件(用于其中一个域),将旧页面重定向到同一域中的新页面。问题是重定向会自动设置为重定向指向服务器的所有域。有解决方案吗?
我目前的.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
(下方的重定向区域)
重定向工作正常,但它们适用于我不喜欢的所有域