我的登錄控制器:$this->load->view('login-view');
從URL中移除笨的index.php後
我的鏈接重定向到「登錄視圖」是模板是:anchor('login','Login');
之前從URL中移除的index.php codeigniter運作良好。但從url中刪除index.php後,它不起作用。
我的.htaccess文件是:
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
難expalin我想,這就是所有我有。 :(
它仍然有效,如果你稱它爲'index.php/login'? – Shomz
你設置了config.php和routes.php嗎? – Kenzo
index.php /登錄工程...但index.php顯示在url ... –