htaccess: deny from all, allow from xxx.xxx.xxx.xxx - with redirect?
I would like to block everyone's (but my own) access from a site temporarily, utilizing the following:
<Limit GET POST>
order deny,allow
deny from all
allow from xxx.xxx.xxx.xxx
</Limit>
Is there a way to add an additional statement that will redirect the denied surfers to a page?
Thanks!
|