Codeigniter - how to remove the index.php from url?

前端 未结 4 2023
醉酒成梦
醉酒成梦 2021-01-05 14:03

I have following structure of my project

/system
/applications
  /cache
  /core
  /helpers
  /hook
  /language
  /libraries
  /logs
  /third_party
  /admin-p         


        
4条回答
  •  半阙折子戏
    2021-01-05 14:39

    Have a look in the config.php file, there is a variable named 'index_page'

    try changing

    $config['index_page'] = "index.php";
    

    to

    $config['index_page'] = "";
    

提交回复
热议问题