帝国CMS列表页怎么跳转到内容页?
                            2022-06-23	
                        
			
                    帝国CMS列表页跳转到内容页的列表模板代码的方法,下面一起来看看怎么样实现吧!
此代码适用于栏目下面只有一个文章的 例如公司简介,联系我们等单页形式 代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>[!--pagetitle--] </title>
</head>
<body>
[e:loop={'selfinfo',1,0,0,'','newstime ASC'}]
<script type="text/javascript">
self.location.href='<?=$bqsr['titleurl']?>';
</script>
[/e:loop]
 
</body>                    声明:本文来自用户分享和网络收集,仅供学习与参考,测试请备份。 
                     
  
  
                        