Removing index.php in CodeIgniter using .htaccess file

后端 未结 6 2456
悲&欢浪女
悲&欢浪女 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:57

    
    Options +FollowSymLinks
    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    

    Live:

    #RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
    

    Local:

    #RewriteRule .* index.php/$0 [PT,L]
    

提交回复
热议问题