Content
You can easily make an .htaccess rewrite rule time-dependent. To do this, you should add the following line before the rewrite rule you wish to make time-dependent:
1
|
RewriteCond %{TIME_HOUR} ^09
|
This way the rewrite rule following the condition will be executed after 9 AM.
If you wish to use minutes in the condition, you should add:
1
|
RewriteCond %{TIME_HOUR}%{TIME_MIN} ^0923
|
This way the rewrite rule following the condition will be executed after 9:23 AM.