Redirecting authorization denied traffic...
What do I need to do to this .htaccess file to make it redirect authorization denied traffic to a url of my choice? I have a lot of people trying to guess passwords and want to redirect to my join page.
AuthUserFile /usr/local/apache/www/mysite.com/data_storage/.htpasswd
AuthGroupFile /dev/null
AuthName "MySite.com Members Section"
AuthType Basic
<Limit GET POST>
require valid-user
</Limit>
|