[摘要]梦内容打点系统DedeCMS,是一个集内容宣布、编辑、打点检索便是一体的网站打点系统Web CMS,他拥有海外CMS浩瀚特点之外,还团结中国用户的需要,对内容打点系统观念举办明晰阐明和定位。本文讲一下DEDECMS如何实现文章栏目和文章页面伪静态。
一、首先必需担保你的空间或处事器支持伪静态即URL重写。
二、网站靠山开启伪静态。
开启伪静态的要领:靠山--》系统--》焦点配置,找到:是否利用伪静态,选择是,确定生存。
三、网站增加栏目配置利用动态页。
栏目列表选项: 选择利用动态页
四、添加文章时选择利用动态欣赏。
宣布选项: 选择 仅动态欣赏
return "/view.php?aid=$aid";
五、dedecms5.7以上版本得改include/helpers/channelunit.helper.php
dedecms其他版本需要修改php文件include/channelunit.func.php
1.修改栏目页:
查找
function GetTypeUrl$reurl = $GLOBALS['cfg_phpurl']."/list.php?tid=".$typeid;
修改为:
$reurl = "/list-".$typeid.".html";2.文章具体页修改
1) 查找 function GetFileName 内里的
return $GLOBALS["cfg_plus_dir"]."/view-".$aid.'-1.html';修改为:
return "/view-".$aid.'-1.html';2) 查找
return $GLOBALS['cfg_phpurl']."/view.php?aid=$aid";修改为:
return "/view.php?aid=$aid";其实不修改也可以,可是URL地点会长一点,按照本身的需要而设定吧。
六、需要在根目次下增加一个.htaccess文件。
添加如下代码:
Options +FollowSymLinksDirectoryIndex index.html
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.(php|html|htm)\ HTTP/
RewriteRule ^index\.(php|html|htm)$ [R=301,L]
#伪静态文章列表list,文章具体页view
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=$1RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.(php|html|htm)\ HTTP/
RewriteRule ^index\.(php|html|htm)$ [R=301,L]
这段代码实现首页301跳转和把index.html跳转到www域名上,把dede.com改成你的域名即可,假如不需要的话直接删掉这两句。简朴的利用下面的代码:
RewriteEngine On#伪静态文章列表list,文章具体页view
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
以上就完成了dedecms的伪静态要领,其实也简朴!
DEDECMS 下载:
织梦CMS(DedeCMS) v5.7 SP1 GBK build20150618下载
界面预览织梦CMS(DedeCMS) v5.7 SP1 UTF8 build20150618下载
界面预览织梦CMS(DedeCMS) v5.7 build 1111 big5下载
界面预览本文转自:蓝建松SEM博客
分享到