如何定制404页面
Category: /blog /websiteTags: website
无论在什么运行环境下我们最好都要定制一下ERROR 404页面, 因为缺省的页面实在是太难看了. 本文介绍了在share hosting/VPS/dedicated server下如何设置404页面, 包括.htaccess和Nginx下的设置. 我的实例是在Ubuntu Linux下实现的.
原则
- 应该尽量简洁, 尤其当你的页面数量多, 访问量大的时候. 最好做成静态的.
- 404页面应该给出目录/子目录的链接, 这样让人类用户方便访问正确的的栏目.
设置
share hosting
—————
In a share-hosting environment, edit .htaccess
ErrorDocument 404 /404.html
then, chmod it to ‘644’
VPS/dedicated server
In Nginx site-conf,
server {
error_page 404 /404.html;
}
我没列出Apache的设置, 我个人感觉应该把它做静态的, 并让那些轻服务器去处理, 没必要用Apache来传递404.