Removing index.php in CodeIgniter using .htaccess file

后端 未结 6 2445
悲&欢浪女
悲&欢浪女 2020-12-15 13:32

I\'m currently developing a website using CodeIgniter and I recently stumbled upon a routing & .htaccess problem.

Basically, the structure of my simple website (

6条回答
  •  温柔的废话
    2020-12-15 13:54

    In your system/application/config/config.php, Change

    $config['index_page'] = "index.php";
    

    To

    $config['index_page'] = "";
    

    And in your .htaccess,add this:

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

提交回复
热议问题