Forum Moderators: phranque
Here's my htaccess file inside the protected directory:
<IfModule mod_rewrite.c>
RewriteEngine off
</IfModule>
AuthUserFile "/path/to/htpasswd"
AuthGroupFile /dev/null
AuthName "Restricted Area"
AuthType Basic
require valid-user
The corresponding errors that pop up in the error log when the IE6 user visits the home page are:
File does not exist: /home/myname/public_html/401.shtml
File does not exist: /home/myname/public_html/{thumb}
Can anyone tell me how to get rid of this issue?
Thanks very much.
The error log entries you mentioned might have some relevance if you happen to have an ErrorDocument directive somewhere in your htaccess file (or you defined something related to error documents in your host's configuration tool - if that applies), and that is pointing to the protected directory, otherwise I'm afraid they are not relevant.