groups

name language licence
Clear CSS Other
Connessione DB PHP Other
dimensioni effettive di un Div JavaScript Other
Check Email JavaScript Other
@import CSS Other
Require the www Apache Other
Block access to files during certain hours of the day Apache Other
I Love Typography CSS Other

< 1 2 >



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...)