CodeIgniter showing only default controller

后端 未结 15 2876
-上瘾入骨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 21:59

    try this

    $config['uri_protocol'] = 'PATH_INFO';
    $config['enable_query_strings'] = FALSE;
    

    Httaccess

    
    RewriteEngine On
    
    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [NC]
    
    

提交回复
热议问题