问题 1
这有点困难,但我有 3 个以上的插件域,它们的文件夹在根目录中。所以例子
www/index.php ROOTSITE.COM
www/example.com/index.php example.COM
www/example2.com/index.php example2.COM
记住上面的 example.com 和 example2.com 是 mains 内的文件夹
因此,当我将 ROOTSITE.COM 置于维护模式时.. 通过使用
RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_ADDR} !^11\.111\.111\.111
RewriteCond %{REQUEST_URI} !^/maintenance\.html$
RewriteRule ^(.*)$ http://rootsite.com/maintenance.html [R=307,L]
它将 example.com example1.com 转移到 root.com/maintanance.html 请告诉一种方法以避免将示例站点设置为非维护模式.. 就像我不希望根目录上的任何 .htaccess 规则影响插件域(在文件夹中)
问题 2
当站点进入维护模式时,我还需要一些预先制作的倒计时计时器(以小时:分钟:秒为单位)......倒计时结束后,它必须转移到 rootsite.com.... 它也可以更改 .htaccess 吗?我的意思是当倒计时结束时,它必须更改 .htaccess 的规则以删除维护模式的规则。