我有一个域重定向到维护页面,而我们正在做一些工作。但是我无法阻止它将附加域重定向到维护页面。
我使用的规则如下.....
Redirect /index.html http://domain.com/maintenance
我添加什么规则来排除addondomain.org
提前致谢
答案 0 :(得分:0)
您需要针对该要求使用mod_rewrite
规则。将此代码放在DOCUMENT_ROOT/.htaccess
文件中:
RewriteEngine On
RewriteCond %{HTTP_HOST} !addondomain\.org$ [NC]
RewriteRule ^index\.html$ http://domain.com/maintenance [L,NC,R=302]