How can I append .html to all my URLs in cakephp?(如何将 .html 附加到 cakephp 中的所有 URL?)
问题描述
我在我的一个项目中使用 cakephp,我的客户希望站点 URL 以 .html 结尾,而不是通常的友好 URL.我想知道在 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.
推荐答案
不得不在不使用 Routes 的情况下解决这个问题.保留页面的默认路由条目:
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 中的所有 URL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 .html 附加到 cakephp 中的所有 URL?


- PHP - if 语句中的倒序 2021-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01