Error no input file specified codeigniter on hostinger.in

前端 未结 1 1040
礼貌的吻别
礼貌的吻别 2020-12-22 10:39

I am getting this error. I cant\'t run my other pages. just only homepage open with domain name. I am working with free domain and hosting.

When I try to access oth

相关标签:
1条回答
  • 2020-12-22 11:28

    Try This Code in .htaccess works for me........

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