如何将扩展名添加到codeigniter路由

时间:2016-04-05 09:16:25

标签: php codeigniter

无论如何将扩展名称放在codeigniter路由上,例如像(.html,.php),我已阅读有关路由的文档,似乎他们没有这种功能。

我只想让我的路线看起来像这样

https://localhost/project/route.php

任何想法?

谢谢。

2 个答案:

答案 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