Quote:
Originally posted by Mooney Giancana
i want to redirect all failed login attempts, you know how the pass prompt stays up for three tries in a row before it shows the failed auth page... well after that third try i wanna redirect that surfer's ass somewhere else!
|
AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthType Basic
ErrorDocument 401 /401.html
<Limit GET>
order allow,deny
allow from all
</Limit>
Put that .htaccess file in your root directory.
Then make a page called 401.html, put that in the same directory and edit the HTML to send them to where you want.