我正在运行CodeIgniter平台,它使用.htaccess来接受URL
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/函数/参数,然后处理请求.
应该是这样的:
原文链接:https://www.f2er.com/php/131925.htmlRewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} !^www\.example\.com [NC] RewriteRule (.*) http://www.example.com/$1 [R=301,L]