当前位置:首页 > CMS教程 > phpcms > 列表

phpcms去掉域名后面的index.html

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-20 15:22:36 浏览: 评论:0 

dede彻底摆脱了,开始研究phpcms,先是去掉域名后面的index.html适合Seo,让栏目的链接变成www.phpfensi.com/xxx/而不是http://www.phpfensi.com/xxx/index.html.

方法有两种:

一种是用PHP的 str_replace函数将INDEX.HTML替换掉,代码如下:

  1. {php $data = subcat($module$catid);} 
  2. {loop $data $n $r
  3. <li><a href="{$str_replace("index.html","",$r[url])}" id="menu_{$r[catid]}"><span>{$r[catname]}</span></a></li> 
  4. {/loop} 

第二种是更改PHPCMS的URL规则,在URL规则中把“index.{$fileext} ”去掉,比如把:{$catdir}/index.{$fileext}|{$catdir}/{$page}.{$fileext} 改成 :{$catdir}|{$catdir}/{$page}.{$fileext}

Tags: phpcms域名 phpcms去掉index html

分享到: