How to remove “index.php” in codeigniter's path

后端 未结 27 1932
盖世英雄少女心
盖世英雄少女心 2020-11-22 07:17

How do I remove the \"index.php\" sticking out in every path in codeigniter somewhere in the center? I want clean non index.php-fied URLs?

27条回答
  •  我寻月下人不归
    2020-11-22 08:11

    Just thought i might add

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

    would be the .htaccess and be sure to edit your application/config.php variable in the following manner:

    replace

    $config['uri_protocol'] = “AUTO” 
    

    with

    $config['uri_protocol'] = “REQUEST_URI”
    

提交回复
热议问题