将.HTML扩展名添加到Codeigniter页面

Dra*_*gos 1 php codeigniter

是否可以在Codeigniter中为每个帖子页面添加.html扩展名?我当前的页面URL看起来像http://blog.localhost/news/first_post

新闻是类别名称,first_post是帖子名称.我希望first_post以.html结尾,例如http://blog.localhost/news/first_post.html

如果我目前没有在我的网址中显示扩展程序,我怎样才能实现这一目标?

谢谢!

Vin*_*aux 8

在config.php上设置url后缀

$config['url_suffix'] = '.html';
Run Code Online (Sandbox Code Playgroud)