Godaddy - Codeigniter - No input file specified on server

前端 未结 4 403
一生所求
一生所求 2021-01-23 17:38

I just uploaded my demo project in subfolder on godaddy . When I open a website url example.com/demo Home page work fine but when I try to open inner p

4条回答
  •  南方客
    南方客 (楼主)
    2021-01-23 18:12

    Thank you all for the response.Finally i got the solution.I just changed my config file setting in config.php file.

    $config['index_page'] = 'index.php?'; // replace with (?) mark
    $config['uri_protocol'] = 'QUERY_STRING';
    

    And my .htaccess file are

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

    Thanx a lot.Hope it is useful for all.

提交回复
热议问题