Removing index.php in CodeIgniter using .htaccess file

后端 未结 6 2442
悲&欢浪女
悲&欢浪女 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条回答
  •  -上瘾入骨i
    2020-12-15 13:39

    You just need to paste this in your .htaccess file:

    
        RewriteEngine on
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule ^(.*)$ index.php/$1 [L,QSA]
    
    

    and make this alternation to your application/config/config.php file:

    $config['index_page'] = '';
    

提交回复
热议问题