CodeIgniter URL suffix .html automatically for all URL

前端 未结 3 1861
陌清茗
陌清茗 2020-12-20 04:08

I am new in CodeIgniter. I setup CI in my localhost Eg. localhost/MyProjects/CodeIgniter/welcome/index

I can able to remove the index.php from the url & I also c

3条回答
  •  时光取名叫无心
    2020-12-20 04:47

    Just redefine the base_url function or make a new one. Look at the source of base_url method

    function _base_url($path = NULL) {
      return base_url() . $path . '.html';
    }
    

提交回复
热议问题