How to remove controller name from url making it clean in codeigniter

后端 未结 9 1327
余生分开走
余生分开走 2020-12-20 16:50

I have the following url..

http://localhost/ci/site_controller/home

I want to remove site_controller controller

9条回答
  •  梦毁少年i
    2020-12-20 17:16

    It's so simple if you want to remove the controller name from URL in the Codeigniter 3.x in my case URL was: http://localhost:8080/index.php/page/sometext Where "Page" is the controller name open application/config/routs.php

    $urlParam = $this->uri->segment_array()[1];
    $rout[$urlParam] = "page/index";
    

    Result: http://localhost:8080/index.php/sometext

    I assure you, it will work. tested 100%.

提交回复
热议问题