存档

文章标签 ‘404’

网易博客404页面下载

2009年11月26日 技术随笔 没有评论

404

界面很清爽,体积小。下载地址 404.zip

一则清爽的404页面

下载地址:404

我见过的最让人喷血的404页面

2009年10月7日 网络日志 4 条评论

404                 来源网址 http://www.jixiaxuegong.com/

关于.htaccess文件使用详解

2009年4月7日 网络日志 没有评论

以下为HDHOO使用的htaccess,我已经加了标注·

# RewriteEngine模式开启

RewriteEngine on

# 定义默认首页

DirectoryIndex index.php default.php index.htm index.html default.htm default.html index.shtml default.shtml

# 修改程序上传文件大小限制

Options All -Indexes
php_value upload_max_filesize 50M

# 域名重定向

# news

RewriteCond %{HTTP_HOST} ^(news.)?hdhoo.com$
RewriteCond %{REQUEST_URI} !^/news/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /news/$1
RewriteCond %{HTTP_HOST} ^(news.)?hdhoo.com$
RewriteRule ^(/)?$ /news/index.html [L]

# 自定义错误页面

ErrorDocument 401 /404.html
ErrorDocument 403 /404.html
ErrorDocument 404 /404.html
ErrorDocument 500 /404.html