需要www通过mod_rewrite - 需要额外的条件?

时间:2010-07-12 12:44:54

标签: apache mod-rewrite

要将example.com重写为www.example.com,我被告知在我的根.htaccess文件中使用以下规则:

# Require the www
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/robots\.txt$
RewriteCond %{REQUEST_URI} !^/sitemap\.xml$
RewriteCond %{REQUEST_URI} !^/favicon\.ico$
RewriteCond %{HTTP_HOST} !^www\.example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]

请你解释前五行的问题是什么?他们真的需要/推荐吗? TIA

1 个答案:

答案 0 :(得分:1)

.htaccess tricks本文将帮助您了解有关htaccess的所有技巧。稍后你自己决定是否需要前五行

希望它有用