Issues in removing index.php in CodeIgniter 3

前端 未结 10 1369
灰色年华
灰色年华 2021-01-13 06:53

I want to access my URL\'s without index.php in CodeIgniter. Here is my Blog controller

class Blog extends CI_Controller {

    pub         


        
10条回答
  •  臣服心动
    2021-01-13 07:37

    Please change your base_url path which exist in application/config

    $config['base_url'] ='localhost/projectname/index.php' 
    

    to

    $config['base_url'] ='localhost/projectname/' 
    

提交回复
热议问题