• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

帝国cms设置伪静态的方法

武飞扬头像
PHP中文网
帮助62

学新通技术网

众所周知,动态页面不利于收录和排名。伪静态可以完美的解决这问题,配合百度云加速CDN,可以让动态页面有静态页面一样快的访问速度。

今天开拓族给大家带来帝国CMS伪静态的详细设置方法。

1.栏目设置为动态访问

  修改单个栏目属性,如下图

学新通技术网

  批量修改栏目属性,如下图:

学新通技术网

2.首页也设置为动态访问

学新通技术网

  现在全站都是动态访问了。

3.伪静态参数设置

学新通技术网

  如上图,设置好伪静态参数。如果不会设置,点击默认按钮,使用帝国默认的伪静态规则。

4.更新信息页地址

学新通技术网

  设置好后,网站的超链接都变成伪静态了,但打开网页却显示404。这是因为网站服务器还未配置伪静态规则。

5.给网站服务器设置伪静态规则

  Nginx伪静态规则:

location / {
rewrite ^([^\.]*)/listinfo-([0-9] )-([0-9] )\.html$ $1/e/action/ListInfo/index.php?classid=$2&page=$3 last;
rewrite ^([^\.]*)/showinfo-([0-9] )-([0-9] )-([0-9] )\.html$ $1/e/action/ShowInfo.php?classid=$2&id=$3&page=$4 last;
rewrite ^([^\.]*)/infotype-([0-9] )-([0-9] )\.html$ $1/e/action/InfoType/index.php?ttid=$2&page=$3 last;
rewrite ^([^\.]*)/tags-(. ?)-([0-9] )\.html$ $1/e/tags/index.php?tagname=$2&page=$3 last;
if (!-e $request_filename) {
return 404;
}
}

  修改完配置文件,需要重启nginx生效。

  Apache伪静态规则

RewriteEngine On
ErrorDocument 404 /404.html
Rewritebase /
#信息列表
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^listinfo-(. ?)-(. ?)\.html$ /e/action/ListInfo/index\.php\?classid=$1&page=$2
#信息内容页
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^showinfo-(. ?)-(. ?)-(. ?)\.html$ /e/action/ShowInfo\.php\?classid=$1&id=$2&page=$3
#标题分类列表页
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^infotype-(. ?)-(. ?)\.html$ /e/action/InfoType/index\.php\?ttid=$1&page=$2
#TAGS信息列表页
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^tags-(. ?)-(. ?)\.html$ /e/tags/index\.php\?tagname=$1&page=$2
#评论列表页
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^comment-(. ?)-(. ?)-(. ?)-(. ?)-(. ?)-(. ?)\.html$  /e/pl/index\.php\?doaction=$1&classid=$2&id=$3&page=$4&myorder=$5&tempid=$6

  至此,帝国CMS伪静态教程圆满结束,更多织梦模板请看开拓族。

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tangcbikb
系列文章
更多 icon
同类精品
更多 icon
继续加载