Remove index.php in codeigniter 2.1.0

前端 未结 9 1754
渐次进展
渐次进展 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条回答
  •  猫巷女王i
    2020-11-29 05:42

    Don't forget to change de config file!

    application/config.php

    $config['index_page'] = '';
    

    .htaccess

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

提交回复
热议问题