groups

name language licence
Require the www Apache Other
Block access to files during certain hours of the day Apache Other



language: Apache
licence: Other

Block access to files during certain hours of the day

options: view full snippetsend to code collector
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
# If the hour is 16 (4 PM) Then deny all access
RewriteCond %{TIME_HOUR} ^16$
RewriteRule ^.*$ - [F,L]
	
(Continues...)