无论如何将扩展名称放在codeigniter路由上,例如像(.html,.php),我已阅读有关路由的文档,似乎他们没有这种功能。
我只想让我的路线看起来像这样
https://localhost/project/route.php
任何想法?
谢谢。
答案 0 :(得分:6)
只需在config.php
中修改此内容。
$config['url_suffix'] = '.html'; //or .php
答案 1 :(得分:4)
是的,在您的application / config / config.php文件中。
我复制/通过我的配置:
/*
|--------------------------------------------------------------------------
| URL suffix
|--------------------------------------------------------------------------
|
| This option allows you to add a suffix to all URLs generated by CodeIgniter.
| For more information please see the user guide:
|
| http://codeigniter.com/user_guide/general/urls.html
*/
$config['url_suffix'] = '.html';
编辑:the doc