Guest pooks Posted November 18, 2019 Posted November 18, 2019 Hello, I was wondering how I could get both 404 and 403 ErrorDocument to work together. I define both in .htaccess but only 404 shows up correctly. The custom error htmls: 404: https://yikes.xyz/404.html403: https://yikes.xyz/403.html Defined in htaccess: ErrorDocument 404 /404.htmlErrorDocument 403 /403.html Is there something I'm doing wrong? Thanks.
Byron Posted November 18, 2019 Posted November 18, 2019 Try: ErrorDocument 404 https://yikes.xyz/404.html ErrorDocument 403 https://yikes.xyz/403.html
Recommended Posts