Codeigniter website 404 error / .htaccess

后端 未结 1 636
广开言路
广开言路 2021-01-26 05:54

I\'m trying with codeigniter, I build a small web that working fine in local but when I uploaded to my free hosting (http://www.hostinger.es) then don\'t work. I think it is bec

相关标签:
1条回答
  • 2021-01-26 06:30

    Use the following code in your .htaccess file

    RewriteEngine On
    RewriteCond %{REQUEST_URI} ^/system.*
    RewriteRule ^(.*)$ index.php?/$1 [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)$ index.php?/$1 [L]
    
    0 讨论(0)
提交回复
热议问题