CodeIgniter URL suffix .html automatically for all URL

前端 未结 3 1869
陌清茗
陌清茗 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:44

    Just edit url_suffix in config.php .....

    $config['url_suffix'] = '.html';
    

    Use site_url()

    
    Register
    
    

    Or anchor()

    // No need .html
    echo anchor('welcome/register', 'Register');
    // Register
    

    Note : Dont forget to load URL helper with $this->load->helper('url');.

提交回复
热议问题