第一步. 首先栏目和文章最好设置成动态浏览. 这样才不会生成静态html文件.
第二步. 设置重写规则. 在系统目录下加一个 .htaccess文件. 内容为:
复制代码代码如下:
RewriteEngine On
RewriteRule ^plus/list-([0-9]+).html$ /plus/list.php?tid=$1
RewriteRule ^plus/list-([0-9]+)-([0-9]+)-([0-9]+).html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3
RewriteRule ^plus/view-([0-9]+)-1.html$ /plus/view.php?arcID=$1
RewriteRule ^plus/view-([0-9]+)-([0-9]+).html$ /plus/view.php?aid=$1&pageno=$2
iis文件写法
复制代码代码如下:
#首页伪静态规则,如果不使用动态首页,请勿必删除这一行,否则打开首页会出现死循环
RewriteRule ^(.*)/index.html $1/index.php [I]
#列表页伪静态规则
RewriteRule ^(.*)/category/list-([0-9]+).html $1/plus/list.php?tid=$2 [I]
RewriteRule ^(.*)/category/list-([0-9]+)-([0-9]+)-([0-9]+).html $1/plus/list.php?tid=$2&TotalResult=$3&PageNo=$4 [I]
#文章页伪静态规则
RewriteRule ^(.*)/archives/view-([0-9]+)-([0-9]+).html $1/plus/view.php?arcID=$2&pageno=$3 [I]
#搜索伪静态规则
RewriteRule ^(.*)/search.html(?:(?.*))* $1/search.php?$2 [I]
#TAG标签伪静态规则
RewriteRule ^(.*)/tags.html $1/tags.php [I]
RewriteRule ^(.*)/tags/(.*)(?:(?.*))* $1/tags.php?/$2 [I]
RewriteRule ^(.*)/tags/(.*)/(?:(?.*))* $1/tags.php?/$2/ [I]
RewriteRule ^(.*)/tags/(.*)/([0-9])(?:(?.*))* $1/tags.php?/$2/$3 [I]
RewriteRule ^(.*)/tags/(.*)/([0-9])/(?:(?.*))* $1/tags.php?/$2/$3/ [I]
如果你的系统支持url重写,到这里就可以用伪静态访问了.
第三步.更改重写的URL.
如果用默认的设置, 访问的URL是:
复制代码代码如下:
http://www.XXXX.com/plus/view-131-1.html
这样的形色, 我们是可以更改这种样式的.
找到文件/include/helpers/channelunit.helper.php打开.
可以看到有这样的语句
复制代码代码如下:
return $GLOBALS["cfg_plus_dir"]."/view-".$aid.'-1.html'
这就是文章的url形色.
$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid
这是列表的重写url.
可以使url更短一点,完成可以写成:
复制代码代码如下:
return "/view-".$aid.'-1.html'
和
$reurl = "/list-".$typeid.".html"
这时重写规则也要更新.
复制代码代码如下:
RewriteEngine On
RewriteRule ^list-([0-9]+).html$ /plus/list.php?tid=$1
RewriteRule ^list-([0-9]+)-([0-9]+)-([0-9]+).html$ /plus/list.php?tid=$1&totalresult=$2&PageNo=$3
RewriteRule ^view-([0-9]+)-1.html$ /plus/view.php?arcID=$1
RewriteRule ^view-([0-9]+)-([0-9]+).html$ /plus/view.php?aid=$1&pageno=$2
更进一步,还可以把view换成自己的任何词语,这也要把include/arc.archives.class.php文件中的view也一样替换。
发布选项: 生成HTML 仅动态浏览 发文章的时候选一下也不多事。为了以后升级 尽量减少修改文件。
以下这没有试,大家按需要测试吧~~
修改数据库
将所有文档设置为“仅动态”,可以进入数据库管理中,执行下面命令:
复制代码代码如下:
update dede_archives set ismake=-1
并将ismake的默认值设置为 -1即动态。
将所有栏目设置为“使用动态页”,可以进入数据库管理中,执行下面命令:
复制代码代码如下:
update dede_arctype set isdefault=-1
DedeCmsTAG标签伪静态
DedeCms默认的TAG标签URL,形如/tags.php?/dedecms5.7/,非常之难看。打开/include/taglib/tag.lib.php,找到lib_tag()函数下的:
复制代码代码如下:
$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/"
替换为
$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword'])."/"
修改分页代码
我们需要修改include/arc.taglist.class.php,将分页函数替换为:
复制代码代码如下:
/** * 获取动态的分页列表
*
* @access public
* @param int $list_len 列表宽度
* @param string $listitem 列表样式
* @return string
*/
function GetPageListDM($list_len,$listitem="info,index,end,pre,next,pageno")
{
$prepage=""
$nextpage=""
$prepagenum = $this->PageNo - 1
$nextpagenum = $this->PageNo + 1
if($list_len == "" || preg_match("/[^0-9]/", $list_len))
{
$list_len = 3
}
$totalpage = $this->TotalPage
if($totalpage <= 1 &&$this->TotalResult >0)
{
return "<span class="pageinfo">共1页/".$this->TotalResult."条</span>"
}
if($this->TotalResult == 0)
{
return "<span class="pageinfo">共0页/".$this->TotalResult."条</span>"
}
$maininfo = "<span class="pageinfo">共{$totalpage}页/".$this->TotalResult."条</span>rn"
$purl = $this->GetCurUrl()
$basename = basename($purl)
$tmpname = explode('.', $basename)
$purl = str_replace($basename, '', $purl).urlencode($this->Tag)
//var_dump($purl)exit
//$purl .= "?/".urlencode($this->Tag)
//获得上一页和下一页的链接
if($this->PageNo != 1)
{
$prepage.="<li><a href='".$purl."-$prepagenum'.html>上一页</a></li>rn"
$indexpage="<li><a href='".$purl."-1.html'>首页</a></li>rn"
}
else
{
$indexpage="<li><a>首页</a></li>rn"
}
if($this->PageNo!=$totalpage &&$totalpage>1)
{
$nextpage.="<li><a href='".$purl."-$nextpagenum.html'>下一页</a></li>rn"
$endpage="<li><a href='".$purl."-$totalpage.html'>末页</a></li>rn"
}
else
{
$endpage="<li><a>末页</a></li>rn"
}
//获得数字链接
$listdd=""
$total_list = $list_len * 2 + 1
if($this->PageNo >= $total_list)
{
$j = $this->PageNo - $list_len
$total_list = $this->PageNo + $list_len
if($total_list >$totalpage)
{
$total_list = $totalpage
}
}
else
{
$j=1
if($total_list >$totalpage)
{
$total_list = $totalpage
}
}
for($j$j<=$total_list$j++)
{
if($j == $this->PageNo)
{
$listdd.= "<li class="thisclass"><a>$j</a></li>rn"
}
else
{
$listdd.="<li><a href='".$purl."-$j.html'>".$j."</a></li>rn"
}
}
$plist = ''
if(preg_match('/info/i', $listitem))
{
$plist .= $maininfo.' '
}
if(preg_match('/index/i', $listitem))
{
$plist .= $indexpage.' '
}
if(preg_match('/pre/i', $listitem))
{
$plist .= $prepage.' '
}
if(preg_match('/pageno/i', $listitem))
{
$plist .= $listdd.' '
}
if(preg_match('/next/i', $listitem))
{
$plist .= $nextpage.' '
}
if(preg_match('/end/i', $listitem))
{
$plist .= $endpage.' '
}
return $plist
}
开启伪静态的前提条件保证你的空间或服务器支持伪静态即URL重写
开启DedeCms伪静态
开启伪静态的方法:后台--》系统--》核心设置 找到:是否使用伪静态: 选择是 确定保存。
栏目和文章发布设置
栏目列表选项: 选择使用动态页 发布选项: 选择仅动态浏览
DEDECMS全站伪静态方法
首页伪静态
把站点根目录下index.html删除,以后不更新主页HTML即可,当然你也可以选择不使用动态首页。
频道、列表、文章伪静态
主要通过修改GetFileName()、GetTypeUrl()这两个函数实现。DedeCms V5.3、DedeCms V5.5和DedeCms V5.6版本,打开/include/channelunit.func.php进行修改。注意:DedeCms V5.7,此文件路径更改了,你打开/include/helpers/channelunit.helper.php即可。
a.将GetFileName()中的如下代码:
//动态文章
if($cfg_rewrite == 'Y')
{
return $GLOBALS["cfg_plus_dir"]."/view-".$aid.'-1.html'
}
替换为
//动态文章
if($cfg_rewrite == 'Y')
{
return "/archives/view-".$aid.'-1.html'
}
将文章页默认的/plus/view-1-1.html链接格式改为/archives/view-1-1.html,这个随个人喜欢,不作更改也行。
b.将GetTypeUrl()中的如下代码:
//动态
$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid
替换为
//动态
$reurl = "/category/list-".$typeid.".html"
这步必须修改,即让你的频道或是列表页URL变更为/category/list-1.html形式。
列表分页伪静态
打开/include/arc.listview.class.php,找到获取动态的分页列表GetPageListDM()函数末尾处:
$plist = str_replace('.php?tid=', '-', $plist)
替换为
$plist = str_replace('plus', 'category', $plist)//将默认的plus替换成category$plist = str_replace('.php?tid=', '-', $plist)将列表分页默认链接格式/plus/list-1-2-1.html修改为/category/list-1-2-1.html,这步也可以不作更改。
DEDECMS文章分页伪静态
打开/include/arc.archives.class.php,找到获取动态的分页列表GetPagebreakDM()函数末尾处:
$PageList = str_replace(".php?aid=","-",$PageList)
替换为
$plist = str_replace('plus', 'archives', $plist)//将默认的plus替换成archives$PageList = str_replace(".php?aid=","-",$PageList)这步不作修改也可以,只是个人喜好问题。
TAG标签伪静态
DedeCms默认的TAG标签URL,形如/tags.php?/dedecms5.7/,非常之难看。打开/include/taglib/tag.lib.php,找到lib_tag()函数下的:
$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/"
替换为
$row['link'] = $cfg_cmsurl."/tags/".urlencode($row['keyword'])."/"到这里,TAG标签URL中的“.php?”号就去掉了。
搜索伪静态
DedeCms搜索URL静态化比较麻烦,附带参数多不说,参数也可能变化,像搜索结果分页的URL就特麻烦,伪静态规则匹配复杂。小拼就偷下懒,将搜索URL中“search.php?…”直接替换为“search.html?…”,至于“?”号之后的参数以任意字符进行匹配。
依次打开include文件夹下的channelunit.func.php、arc.searchview.class.php、arc.taglist.class.php以及/include/taglib/hotwords.lib.php,查找“search.php?”替换为“search.html?”即可。
利用模板。目前PHP的模板可以说是很多了,有功能强大的smarty,还有简单易用的smarttemplate等。它们每一种模板,都有一个获取输出内容的函数。我们生成静态页面的方法,就是利用了这个函数。用这个方法的优点是,代码比较清晰,可读性好。这里我用smarty做例子,说明如何生成静态页:
<?php
require("smarty/Smarty.class.php")
$t = new Smarty
$t->assign("title","Hello World!")
$content = $t->fetch("templates/index.htm")
//这里的 fetch() 就是获取输出内容的函数,现在$content变量里面,就是要显示的内容了
$fp = fopen("archives/2005/05/19/0001.html", "w")
fwrite($fp, $content)
fclose($fp)
?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)