.htaccess tutorial

htaccess Elite


Restrict access by time of day

Ask your mod_rewrite and Redirection questions here, and get answers!

Restrict access by time of day

New postby Byron » 19 Dec 2007 15:01

I would like to use this code here but have it redirect to another page during the times I have specified:

RewriteEngine On
RewriteCond %{TIME_HOUR} ^16|17|18$ RewriteRule ^.*$ - [F,L]


How would I write that?

Thanks,
Byron
Byron
 
Posts: 3
Joined: 19 Dec 2007 14:52
Location: USA

New postby Byron » 20 Dec 2007 01:24

Nevermind, I think I've got it, but feel free to correct me if I'm wrong

RewriteEngine On
RewriteCond %{TIME_HOUR} ^10|11|12$
RewriteRule ^$|^index\.html$ http://www.anybody.com/redirect.html [R=302,L]
Byron
 
Posts: 3
Joined: 19 Dec 2007 14:52
Location: USA


Return to Redirect or Rewrite Questions