Remove index.php in codeigniter 2.1.0

前端 未结 9 1737
渐次进展
渐次进展 2020-11-29 05:10

I tried everything on google related to removing index.php from URL in codeigniter but no solution worked for me I am using codeigniter version 2.1.0 How I can remove index

9条回答
  •  失恋的感觉
    2020-11-29 05:38

    This is what I use and works. Use this code in your .htaccess

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

    Just make sure the .htaccess is in your root folder. (ie: xampp/htdocs)

    Then in your config.php(application\config) replace config['index_page']='index.php' to config['index_page']=''.

提交回复
热议问题