Remove index.php from URL in Codeigniter

前端 未结 7 767
北恋
北恋 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:04

    DirectoryIndex index.php
    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
    RewriteRule ^pages/.*$ http://localhost/test/? [R=301,L]
    

提交回复
热议问题