关于.htaccess文件使用详解

0

以下为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

发表评论

您的邮箱不会公开,当您的评论有新的回复时,会通过您填写的邮箱向您发送评论内容。 必填字段 *

为何看不到我发布的评论?

正在提交, 请稍候...