codeigniter url handling to remove index.php and method name

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-19 11:55:45

问题


hi i am using codeigniter first time and i have to manage my URL to view URL without index.php/controller so how can i write ht access and where i keep it my folder structure as well as any other changes i have to do in my auto load or config file....

my URL is like below...

project_name/index.php/controller_name/method_name/param 1/param 2

so for this URL how can i write ht access rule?please need helpful......


回答1:


Open config.php and do following replaces

$config['index_page'] = "index.php"

to

$config['index_page'] = ""

Just replace

$config['uri_protocol'] ="AUTO"

to

$config['uri_protocol'] = "REQUEST_URI"

AND IN HTACCESS FILE put following code

RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]



回答2:


put this code in your .htaccess file.

RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule .* index.php/$0 [PT,L] 


来源:https://stackoverflow.com/questions/29160217/codeigniter-url-handling-to-remove-index-php-and-method-name

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!