如何将.html附加到cakephp中的所有网址? [英] How can I append .html to all my URLs in cakephp?

查看:119
本文介绍了如何将.html附加到cakephp中的所有网址?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在我的一个项目中使用cakephp,我的客户端希望网站URL以.html结尾,而不是通常友好的网址。我想知道如果它的可能在cakephp这样做通过任何其路由技术。请帮助。

I am using cakephp in one of my projects and my client wants the site URLs to end with .html and not the usual friendly urls. I was wondering if its possible in cakephp to do so through any of its routing techniques. Please help.

推荐答案

必须解决这个问题,而不使用路由。保留页面的默认路由条目:

Had to solve this without using Routes. Kept the default route entry for pages:

Router::connect('/pages/*', array('controller' => 'pages', 'action' => 'display'));

并在显示操作中删除.html扩展名并呈现相应的视图:

and in the display action removed the .html extension and rendered the respective view:

preg_replace('/\.html$/','',$view);
$this->render(null,'default',$view);

在将添加了ext的页面调用为.html

While calling the pages added 'ext' to be .html

这篇关于如何将.html附加到cakephp中的所有网址?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆