From 4587a30cd0d9a6ef889315f2e385f538f3d3e822 Mon Sep 17 00:00:00 2001 From: "Ethan N. Paul" Date: Thu, 21 Dec 2017 18:25:08 -0500 Subject: [PATCH] Fixed custom errors in htaccess --- .htaccess | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.htaccess b/.htaccess index 95e2bc1..f57f783 100644 --- a/.htaccess +++ b/.htaccess @@ -1,10 +1,10 @@ -ErrorDocument 401 /401.html -ErrorDocument 403 /403.html -ErrorDocument 404 /404.html -ErrorDocument 405 /405.html -ErrorDocument 406 /406.html -ErrorDocument 412 /412.html +ErrorDocument 401 /_error/401.html +ErrorDocument 403 /_error/403.html +ErrorDocument 404 /_error/404.html +ErrorDocument 405 /_error/405.html +ErrorDocument 406 /_error/406.html +ErrorDocument 412 /_error/412.html -ErrorDocument 500 /500.html -ErrorDocument 501 /501.html -ErrorDocument 502 /502.html +ErrorDocument 500 /_error/500.html +ErrorDocument 501 /_error/501.html +ErrorDocument 502 /_error/502.html