要创建的基本.htaccess错误页面是什么?

时间:2015-04-08 11:15:44

标签: html .htaccess error-handling

我知道404页面是必不可少的,但是开发人员应该为其创建错误页面的其他最常见错误是什么?

1 个答案:

答案 0 :(得分:1)

这是一个包含客户端错误和服务器错误的列表。

http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error

http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#5xx_Server_Error

我会为这些特定的错误代码创建一个页面,因为这是常见的:

400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
500 Internal Server Error
503 Service Unavailable

然后有一个ErrorDocument指令用于导致同一页面的所有其余错误代码。这是为了您想要为所有错误代码设置自定义错误页面。