.htaccess将非WWW重定向到WWW保留URI字符串

时间:2009-11-06 07:22:18

标签: php apache .htaccess mod-rewrite codeigniter

我正在运行CodeIgniter平台,它使用.htaccess接受像

这样的网址
http://www.mysite.com/controller/function/argument

我目前使用一些.htaccess重写,即(简化):

RewriteEngine On
RewriteCond %{REQUEST_URI} !^(/index\.php|/images|/assets)
RewriteRule ^(.*)$ /index.php/$1 [L]

我想添加一个重写规则,将所有非www请求重定向到www。我还希望域名后面的URI字符串在重定向中保持不变。例如,如果用户请求http://mysite.com/controller/function/argument,我希望.htaccess文件在浏览器中将请求重写为http://www.mysite.com/controller/function/argument,然后处理请求。

3 个答案:

答案 0 :(得分:14)

我有类似的问题,这个.htaccess适合我

RewriteEngine On                           

#This bit rewrites your host name to include www
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,NC,L]

#This bit does the codeigniter magic
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteCond %{REQUEST_FILENAME} !-d  
RewriteRule ^(.*)$ /index.php/$1 [L]

答案 1 :(得分:10)

它应该是这样的:

RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

答案 2 :(得分:0)

如果您使用的是apache 2.4,则可以使用以下简单重定向:

<if "%{HTTP_HOST} =='example.com'">
Redirect / http://www.example.com/
</if>