Codeigniter URL not working without index.php

后端 未结 3 1141
没有蜡笔的小新
没有蜡笔的小新 2021-01-20 01:03

I\'ve just set up a new webiste http://www.reviewongadgets.com

But there is a problem with URL rendering

When I put an URL as below it\'s not working and giv

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-20 01:50

    i aggree with Vlakarados, but i will share my .htaccess setting

    RewriteEngine on
    RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ ./index.php?/$1 [L,QSA]
    

    its work perfectly.

    i hope that's work to for your CI website

提交回复
热议问题