最近发现网站http能正常跳转自定义404页面,但是https就不能跳转到自定义404页面。
解决办法:
ErrorDocument 400 /errpage/400.html
ErrorDocument 403 /errpage/403.html
ErrorDocument 404 /errpage/404.html
ErrorDocument 503 /errpage/503.html
在.htaccess文件上加上这段代码之后就可以正常跳转,适用apache配置。
最近发现网站http能正常跳转自定义404页面,但是https就不能跳转到自定义404页面。
解决办法:
ErrorDocument 400 /errpage/400.html
ErrorDocument 403 /errpage/403.html
ErrorDocument 404 /errpage/404.html
ErrorDocument 503 /errpage/503.html
在.htaccess文件上加上这段代码之后就可以正常跳转,适用apache配置。