我需要为我的网站强制使用 www,我的网站是使用 codeigniter 框架构建的。
这是我的 htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|css|images|js|plugins|Scripts|pirobox|applications-assets|user-assets|robots\.txt)
RewriteCond %{HTTP_HOST} !^www\.(.*)
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteRule ^(.*)$ /index.php?/administrator/$1 [L]
但它不起作用你能告诉我这里有什么问题吗?