
December 19th, 2004, 07:17 AM
|
|
Registered User
|
|
Join Date: Dec 2004
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
ErrorDocument does not work with XP
On WinXP 404 errors do not follow configuration rules. This is my httpd.conf:
Code:
Alias /errordocs/ "C:/Documents and Settings/snez/My Documents/My Webs/errordocs/"
<Directory "C:/Documents and Settings/snez/My Documents/My Webs/errordocs">
Options Indexes FollowSymlinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ErrorDocument 404 /errordocs/404.htm
Instead of the given file, the browser returns its standard 404 page. For a strange
reason however, ErrorDocument 404 http://localhost/errordocs/404.htm works..
Does anyone have apache on WinXP with functionable directives?
|