我.htaccess
文件是:如何刪除index.php並在CodeIgniter URL中添加www?
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt|img/|css/|js)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L,QSA]
這將刪除URL index.php
和部隊從example.net
到www.example.net
重定向,但是當我進入http://example.net
,它不重定向到www.example.net
。如何解決這個問題?
替換以下變量不爲我工作 – 2013-03-01 11:14:45