I am wondering if it is possible to deny access to some resources through the .htaccess file, after the n-th amount of time. If possible, do so in some way.
1 answer
In .htaccess you can deny access based on time.
RewriteCond %{TIME_HOUR} > 16 RewriteRule .* - [F] Access to everything (. *) Will be denied ([F]) if TIME_HOUR> 16
More is here
|