问题描述
我正在尝试将域重定向到具有相同网址的新域,但我需要主页(或“/”)转到特定网址。
我用它来重定向所有具有相同结构的
<IfModule https://mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^https://webantigua.com$ [OR]
RewriteCond %{HTTP_HOST} ^https://www.webantigua.com$
RewriteRule (.*)$ https://webnueva.com/$1 [R=301,L]
</IfModule>
但我需要一个规则让家去https://webnueva.com/web-antigua/
我能做什么?
解决方法
您能否尝试遵循按照您显示的尝试编写的规则。 请确保在测试您的网址之前清除浏览器缓存。
<IfModule https://mod_rewrite.c>
RewriteEngine ON
####OP's attempted rules here,with small fixes in them.
RewriteCond HTTPS ON
RewriteCond %{HTTP_HOST} ^(www\.)?webantigua\.com$ [NC]
RewriteCond %{REQUEST_URI} !^/?$
RewriteRule ^ https://webnueva.com%{REQUEST_URI} [NE,R=301,L]
RewriteCond HTTPS ON
RewriteCond %{HTTP_HOST} ^(www\.)?webantigua\.com$ [NC]
RewriteRule ^/?$ https://webnueva.com/web-antigua/ [R=301,L]
</IfModule>