CodeIgniter showing only default controller

后端 未结 15 2877
-上瘾入骨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

    Try this htaccess:

    RewriteEngine on
    RewriteCond $1 !^(index\.php|images|robots\.txt)
    RewriteRule ^(.*)$ /mysite/index.php/$1 [L]
    

    Also you should have created controller named user and this controller should ahve function signin.

提交回复
热议问题