帝国cms tags 伪静态 linux nginx 配置

查看付费资源请通过右侧购买区域进行购买!

帝国cms tags 伪静态 linux nginx 配置

在 找到nginx 配置文件,nginx.conf,server 里面加入:

if (!-e $request_filename) { 

  rewrite ^([^\.]*)/listinfo-(.+?)-(.+?)\.html$ $1/e/action/ListInfo/index.php?classid=$2&page=$3 last;

rewrite ^([^\.]*)/showinfo-(.+?)-(.+?)-(.+?)\.html$ $1/e/action/ShowInfo.php?classid=$2&id=$3&page=$4 last;

rewrite ^([^\.]*)/infotype-(.+?)-(.+?)\.html$ $1/e/action/InfoType/index.php?ttid=$2&page=$3 last;

rewrite ^([^\.]*)/tags-(.+?)-(.+?)\.html$ $1/e/tags/index.php?tagname=$2&page=$3 last;

 return 404;

 }


重启服务器就行了,service nginx restart

或如下:

 rewrite ^([^.]*)/list-?([0-9]+)?\.html$ $1/list.php?classid=$2 last;

rewrite ^([^.]*)/list-(.+?)-(.+?)\.html$ $1/list.php?page=$2&classid=$3 last;

rewrite ^([^.]*)/show-(.+?)-(.+?)\.html$ $1/show.php?classid=$2&id=$3 last;

if (!-e $request_filename) {

return 404;


帝国cms的tags页面url默认是 /e/tags/index.php?tagname=XXX


这种形式的,我们希望的是后缀变成


http://www.fangzhan100.com/tags-etagid17-0.html(其中后面的0是页数,前面的id就是tags的id)


其中这种形式的


那么如何来设置呢?


如图所示:

说明:采用静态页面时不需要设置,只有当采用动态页面时可通过设置伪静态来提高SEO优化,如果不启用请留空。注意:伪静态会增加服务器负担,修改伪静态格式后你需要修改服务器的 Rewrite 规则设置。

帝国cms tags 伪静态 linux nginx 配置 帝国cms伪静态设置 第1张

.htaccess文件内容:(这里我测试机上用的是apche,如果别的环境请自行转换)


<ifmodule mod_rewrite.c>

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

</ifmodule>


  nginx的规则如下:


rewrite ^/tags-(.+?)-([0-9]+).html$ /e/tags/index.php?tagname=$1&page=$2 last;


转载请说明出处
仿站网 » 帝国cms tags 伪静态 linux nginx 配置

发表评论

您需要后才能发表评论

仿站网专注帝国cms仿站,Zblog仿站,Wordpress仿站服务,专业+效率+售后保障

关于我们 联系客服
 
QQ在线咨询
客服热线
139-3511-2134