Remove index.php from URL in Codeigniter

前端 未结 7 786
北恋
北恋 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 15:56

    First check whether your apache is supporting mod_rewrite. If yes then add a .htaccess file. My codeigniter .htaccess file is:

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

    Finally in your config file, change your base_url, remove index.php from that if you have added.

提交回复
热议问题