本站与您分享了如何在帝国cms中设置伪静态。相信大部分人都不太了解,分享这篇文章,供大家参考。希望你看完这篇文章后收获很大。我们一起来看看。
1.栏目设置为动态访问
修改单个列的属性,如下图所示
批量修改列属性,如下图所示:
2.首页也设置为动态访问
现在全站动态访问。
3.伪静态参数设置
如上所示设置伪静态参数。如果无法设置,请单击默认按钮使用英制默认伪静态规则。
4.更新信息页地址
设置好之后,网站的超链接变成伪静态,但打开网页时,显示404。这是因为网站的服务器没有配置伪静态规则。
5.给网站服务器设置伪静态规则
Nginx伪静态规则:
位置/
rewrite^([^.]*)/listinfo-([0-9] )-([0-9] )。html $ $ 1/e/action/ListInfo/index . PHP?classid=$ 2page=$ 3last
rewrite^([^.]*)/show info-([0-9])-([0-9])。html$$1/e/action/ShowInfo.php?classid=$ 2id=$ 3page=$ 4last
rewrite^([^.]*)/infotype-([0-9] )-([0-9] )。html $ $ 1/e/action/InfoType/index . PHP?ttid=$ 2page=$ 3last
rewrite^([^.]*)/标记-(。)-([0-9] ).html$$1/e/tags/index.php?标记名=$ 2page=$ 3last
if(!-e$request_filename){
返回404;
}
}修改配置文件后,需要重新启动nginx才能生效。
Apache伪静态规则
重写引擎
ErrorDocument404/404.html
重写基础/
#信息列表
RewriteCond%{QUERY_STRING}^(.*)$
RewriteRule^listinfo-(.)-(.).html$/e/action/ListInfo/index。php?classid=$1page=$2
#信息内容页面
RewriteCond%{QUERY_STRING}^(.*)$
RewriteRule^showinfo-(.)-(.)-(.).html$/e/action/ShowInfo。php?classid=$1id=$2page=$3
#标题分类列表页面
RewriteCond%{QUERY_STRING}^(.*)$
RewriteRule^infotype-(.)-(.).html$/e/action/InfoType/index。php?ttid=$1page=$2
#TAGS信息列表页面
RewriteCond%{QUERY_STRING}^(.*)$
RewriteRule^tags-(.)-(.).html$/e/tags/index。php?标记名=$1page=$2
#注释列表页面
RewriteCond%{QUERY_STRING}^(.*)$
RewriteRule^comment-(.)-(.)-(.)-(.)-(.)-(.).html$/e/pl/index。php?DOA action=$ 1 class id=$ 2 id=$ 3 page=$ 4 my order=$ 5 tempid=$ 6以上是“如何在Imperial cms中设置伪静态”一文的全部内容。谢谢大家看!相信大家都有一定的了解,希望分享的内容对大家有所帮助。如果你想学习更多的知识,请关注本站!