迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
迅睿cms有没有这样的功能,一个详情页面可以有多个子页面。
比如
https://www.meizu.com/16spro/summary/
https://www.meizu.com/16spro/performance/
https://www.meizu.com/16spro/camera/
https://www.meizu.com/16spro/spec/
public function summary() { $this->_module_init(); define('SC_HTML_FILE', 1); // 不跳转 $data = $this->_Show( (int)\Phpcmf\Service::L('Input')->get('id'), [ 'field' => dr_safe_replace(\Phpcmf\Service::L('Input')->get('field')), 'value' => dr_safe_replace(\Phpcmf\Service::L('Input')->get('value')), ], max(1, (int)\Phpcmf\Service::L('Input')->get('page')), 1 ); \Phpcmf\Service::V()->assign('meta_title', "概述".SITE_SEOJOIN.\Phpcmf\Service::V()->get_value('meta_title')); \Phpcmf\Service::V()->display('summary.html'); } public function performance() { $this->_module_init(); define('SC_HTML_FILE', 1); // 不跳转 $data = $this->_Show( (int)\Phpcmf\Service::L('Input')->get('id'), [ 'field' => dr_safe_replace(\Phpcmf\Service::L('Input')->get('field')), 'value' => dr_safe_replace(\Phpcmf\Service::L('Input')->get('value')), ], max(1, (int)\Phpcmf\Service::L('Input')->get('page')), 1 ); \Phpcmf\Service::V()->assign('meta_title', "性能".SITE_SEOJOIN.\Phpcmf\Service::V()->get_value('meta_title')); \Phpcmf\Service::V()->display('performance.html'); } public function camera() { $this->_module_init(); define('SC_HTML_FILE', 1); // 不跳转 $data = $this->_Show( (int)\Phpcmf\Service::L('Input')->get('id'), [ 'field' => dr_safe_replace(\Phpcmf\Service::L('Input')->get('field')), 'value' => dr_safe_replace(\Phpcmf\Service::L('Input')->get('value')), ], max(1, (int)\Phpcmf\Service::L('Input')->get('page')), 1 ); \Phpcmf\Service::V()->assign('meta_title', "相机".SITE_SEOJOIN.\Phpcmf\Service::V()->get_value('meta_title')); \Phpcmf\Service::V()->display('camera.html'); }
增加下面的代码比如相机控制器,访问地址就是:/index.php?s=news&c=show&m=camera&id=99999,模板就是camera.html