Remove index.php from URL in Codeigniter

前端 未结 7 726
北恋
北恋 2021-01-02 15:48

I have done this lots of time. But than also I am stuck here again (in a different server) and can not figure out what is the issue.

Completed htaccess editing

7条回答
  •  一生所求
    2021-01-02 16:13

    Use following htaccess code to remove index.php from your codeigniter url

    RewriteEngine on
    RewriteCond $1 !^(index\.php|images|robots\.txt|css)
    RewriteRule ^(.*)$ ./index.php/$1 [L]
    

提交回复
热议问题