CodeIgniter showing only default controller

后端 未结 15 2875
-上瘾入骨i
-上瘾入骨i 2021-02-14 21:59

I am using Codeigniter in Local WAMP. Here code is working fine. But i upload in Cpanel ( inside of example.com, folder name call \'mysite\'). Ther

15条回答
  •  走了就别回头了
    2021-02-14 22:24

    i was facing same issue ..its resolved when i use

    $config['uri_protocol'] = 'AUTO'; 
    

    in config.php ..try using AUTO and PATH_INFO for the same

    make sure rewrite_module is on in apache

提交回复
热议问题