[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] custom 403 message
- Subject: Re: [cobalt-users] custom 403 message
- From: "Carrie Linn Bartkowiak" <ravencarrie@xxxxxxxx>
- Date: Thu Dec 21 07:55:56 2000
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
> 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