我現在的網址是http://localhost/ci/也被下的config.phpCodeIgniter的URL路由
設置,但我怎麼打開視圖其他頁面,而不specifing的index.php
的http:/本地主機/ CI /頁/查看/登錄,但不喜歡這樣的http:/localhost/ci/index.php/Pages/view/login
我現在的網址是http://localhost/ci/也被下的config.phpCodeIgniter的URL路由
設置,但我怎麼打開視圖其他頁面,而不specifing的index.php
的http:/本地主機/ CI /頁/查看/登錄,但不喜歡這樣的http:/localhost/ci/index.php/Pages/view/login
你應該看看這個
http://www.freewebmasterhelp.com/tutorials/htaccess/
可以用.htaccess
文件做了很多嘗試 把這個在您的.htaccess
文件
RewriteEngine on
RewriteCond $1 ^(Pages|view|login|P[0-9]{2,8}) [NC]
RewriteRule ^(.*)$ /index.php/$1 [L]
使用application/config/routes.php文件。
添加URL路由定義非常簡單。
請參閱此鏈接瞭解更多信息:http://codeigniter.com/user_guide/general/routing.html
您從視圖文件夾直接不打開的文件。它不是那樣的工作 – safarov 2012-03-29 10:46:06
CodeIgniter有一些關於設置「RewriteRules」的文檔。 – mario 2012-03-29 10:46:25
[CodeIgniter設置乾淨網址]的可能重複(http://stackoverflow.com/questions/8161171/setup-clean-urls-like-codeigniter) – mario 2012-03-29 10:47:46