htaccess会不时重定向

时间:2019-06-15 10:34:58

标签: .htaccess

我试图重定向我的页面,该页面在晚上19:00关闭,然后应该在早晨06:00再次停止

我确实尝试过从别人那里得到的sevel代码。 但是,这是我的最后尝试,但是什么也没有发生。 我确实改变了时间进行测试。

ReWriteEngine on

RewriteCond %{TIME_HOUR} >=12
RewriteCond %{TIME_HOUR} <18
RewriteRule ^ /test.html [R,L]

如果我放弃=

就可以了
ReWriteEngine on

RewriteCond %{TIME_HOUR} >13
RewriteCond %{TIME_HOUR} <15
RewriteRule !^test\.html$ /test.html [R,NC,L]

1 个答案:

答案 0 :(得分:0)

假设您要在晚上7点到凌晨6点之间重定向它,可​​以使用:

ReWriteEngine on

RewriteCond %{TIME_HOUR} >=19
RewriteCond %{TIME_HOUR} <=6
RewriteRule !^test\.html$ /test.html [R,NC,L]

!^test\.html$为否定条件以停止重定向循环。