Have been trying to setup a custom error page for 404 pages. Basicly I want when anything random at a domain:
domain.com/asdf to point to a custom 404 page.
I have tried editing the custom error pages at:
/home/httpd/vhosts/domain.com/error_docs/
Still it always shows that standard 404 page. I tried editing the .htaccess file and adding this:
[root@server httpdocs]# cat .htaccess
ErrorDocument 400 /error_docs/bad_request.html
ErrorDocument 403 /error_docs/forbidden.html
ErrorDocument 404 /error_docs/not_found.html
ErrorDocument 500 /error_docs/internal_server_error.html
No luck here. I tried making custom pages:
ErrorDocument 404 /test.html
Still no luck. I am running Plesk 7.5.3 and any tips on getting cusom error pages to work would be great