Authorization Required
This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.
----------------------
Error 401, right? Bad Password.
Well, I want my .htaccess file to direct it to a page instead of just the server error page.
I don't understand why this doesn't work:
###SERVE CUSTOM ERROR DOCS - BEGIN
Options +FollowSymlinks
ErrorDocument 401
http://www.mysite.com/mypage.html
###SERVE CUSTOM ERROR DOCS - END
Any ideas?
Thank you.