Hi,
I'm having some problems getting my custom error document to work. In .htaccess, I've setup a number of RedirectPermanent mappings that are working, but if I type:
ErrorDocument 404 /mscdev3/error/error_404.htm
it doesn't work.
I've tried:
ErrorDocument 404 /mscdev3/error/error_404.htm
id didn't work either.
My error_404.htm resides one directory down from the site root.
The error I get in the Apache error_log is the following:
File does not exist /var/
My site is setup as a virtual site using the following configuration in httpd.conf:
</VirtualHost>
# Virtual host mscdev3
<VirtualHost 172.17.0.3:80>
DocumentRoot /var/
ServerName mscdev3
<Directory "/var/ Options ExecCGI
AllowOverride All
Allow from from all
Order allow,deny
</Directory>
I think I have my root relative path messed-up.
Any help would be greatly appreciated.
I'm having some problems getting my custom error document to work. In .htaccess, I've setup a number of RedirectPermanent mappings that are working, but if I type:
ErrorDocument 404 /mscdev3/error/error_404.htm
it doesn't work.
I've tried:
ErrorDocument 404 /mscdev3/error/error_404.htm
id didn't work either.
My error_404.htm resides one directory down from the site root.
The error I get in the Apache error_log is the following:
File does not exist /var/
My site is setup as a virtual site using the following configuration in httpd.conf:
</VirtualHost>
# Virtual host mscdev3
<VirtualHost 172.17.0.3:80>
DocumentRoot /var/
ServerName mscdev3
<Directory "/var/ Options ExecCGI
AllowOverride All
Allow from from all
Order allow,deny
</Directory>
I think I have my root relative path messed-up.
Any help would be greatly appreciated.