[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] custom 403 message



> my current htaccess in the directory that needs the page:
>
<snip>
> ErrorDocument 403 /password.html

You're telling the server to grab password.html from your root directory,
like www.yourdomain.com/password.html.
For directory-specific error pages, this should look like
ErrorDocument 403 password.html         (if it's in the same folder)
or
ErrorDocument403 /path/to/password.html      (URL path, not server path)

Carrie Bartkowiak