




已阅读5页,还剩2页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
Discuz! X3.0/X3.1/X3.2通用 伪静态设置和伪静态规则首先简单讲一下为什么要做伪静态,伪静态是相对真实静态来讲的,通常我们为了增强搜索引擎的友好面,都将文章内容生成静态 页面,但是有的朋友为了实时的显示一些信息。或者还想运用动态脚本解决一些问题。不能用静态的方式来展示网站内容。但是这就损失了对搜索引擎的友好面。怎 么样在两者之间找个中间方法呢,这就产生了伪静态技术。就是展示出来的是以html一类的静态页面形式,这种html的显示形式更加有利于SEO。现在开源程序越来越流行了,很多新手站长在用Discuz程序搭建网站后,会发现自己的网站地址是动态地址,所谓动态地址就是带有?号这种,比如/forum.php?mod=这种就属于动态地址,那么,我们想要网站就行伪静态,也就是以html结尾的网址,该如何做呢?1.在后台“全局SEO设置URL 静态化”相关复选框全部勾选,点“提交”按钮。如下图2.根据web服务器选择相应的伪静态规则:Apache Web Server(独立主机用户) RewriteEngine On RewriteCond %QUERY_STRING (.*)$ RewriteRule (.*)/topic-(.+).html$ $1/portal.php?mod=topic&topic=$2&%1 RewriteCond %QUERY_STRING (.*)$ RewriteRule (.*)/article-(0-9+)-(0-9+).html$ $1/portal.php?mod=view&aid=$2&page=$3&%1 RewriteCond %QUERY_STRING (.*)$ RewriteRule (.*)/forum-(w+)-(0-9+).html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3&%1 RewriteCond %QUERY_STRING (.*)$ RewriteRule (.*)/thread-(0-9+)-(0-9+)-(0-9+).html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3&%1 RewriteCond %QUERY_STRING (.*)$ RewriteRule (.*)/group-(0-9+)-(0-9+).html$ $1/forum.php?mod=group&fid=$2&page=$3&%1 RewriteCond %QUERY_STRING (.*)$ RewriteRule (.*)/space-(username|uid)-(.+).html$ $1/home.php?mod=space&$2=$3&%1 RewriteCond %QUERY_STRING (.*)$ RewriteRule (.*)/blog-(0-9+)-(0-9+).html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3&%1 RewriteCond %QUERY_STRING (.*)$ RewriteRule (.*)/(fid|tid)-(0-9+).html$ $1/index.php?action=$2&value=$3&%1 RewriteCond %QUERY_STRING (.*)$ RewriteRule (.*)/(a-z+a-z0-9_*)-(a-z0-9_-+).html$ $1/plugin.php?id=$2:$3&%1Apache Web Server(虚拟主机用户)# 将 RewriteEngine 模式打开RewriteEngine On# 修改以下语句中的 /discuz 为您的论坛目录地址,如果程序放在根目录中,请将 /discuz 修改为 /RewriteBase /discuz# Rewrite 系统规则请勿修改RewriteCond %QUERY_STRING (.*)$RewriteRule topic-(.+).html$ portal.php?mod=topic&topic=$1&%1RewriteCond %QUERY_STRING (.*)$RewriteRule article-(0-9+)-(0-9+).html$ portal.php?mod=view&aid=$1&page=$2&%1RewriteCond %QUERY_STRING (.*)$RewriteRule forum-(w+)-(0-9+).html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1RewriteCond %QUERY_STRING (.*)$RewriteRule thread-(0-9+)-(0-9+)-(0-9+).html$ forum.php?mod=viewthread&tid=$1&extra=page%3D$3&page=$2&%1RewriteCond %QUERY_STRING (.*)$RewriteRule group-(0-9+)-(0-9+).html$ forum.php?mod=group&fid=$1&page=$2&%1RewriteCond %QUERY_STRING (.*)$RewriteRule space-(username|uid)-(.+).html$ home.php?mod=space&$1=$2&%1RewriteCond %QUERY_STRING (.*)$RewriteRule blog-(0-9+)-(0-9+).html$ home.php?mod=space&uid=$1&do=blog&id=$2&%1RewriteCond %QUERY_STRING (.*)$RewriteRule archiver/(fid|tid)-(0-9+).html$ archiver/index.php?action=$1&value=$2&%1RewriteCond %QUERY_STRING (.*)$RewriteRule (a-z+a-z0-9_*)-(a-z0-9_-+).html$ plugin.php?id=$1:$2&%1IIS Web Server(独立主机用户)ISAPI_Rewrite# 3600 = 1 hourCacheClockRate 3600RepeatLimit 32# Protect httpd.ini and httpd.parse.errors files# from accessing through HTTPRewriteRule (.*)/topic-(.+).html(?(.*)*$ $1/portal.php?mod=topic&topic=$2&$4RewriteRule (.*)/article-(0-9+)-(0-9+).html(?(.*)*$ $1/portal.php?mod=view&aid=$2&page=$3&$5RewriteRule (.*)/forum-(w+)-(0-9+).html(?(.*)*$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3&$5RewriteRule (.*)/thread-(0-9+)-(0-9+)-(0-9+).html(?(.*)*$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3&$6RewriteRule (.*)/group-(0-9+)-(0-9+).html(?(.*)*$ $1/forum.php?mod=group&fid=$2&page=$3&$5RewriteRule (.*)/space-(username|uid)-(.+).html(?(.*)*$ $1/home.php?mod=space&$2=$3&$5RewriteRule (.*)/blog-(0-9+)-(0-9+).html(?(.*)*$ $1/home.php?mod=space&uid=$2&do=blog&id=$3&$5RewriteRule (.*)/(fid|tid)-(0-9+).html(?(.*)*$ $1/index.php?action=$2&value=$3&$5RewriteRule (.*)/(a-z+a-z0-9_*)-(a-z0-9_-+).html(?(.*)*$ $1/plugin.php?id=$2:$3&$5IIS7 Web Server(独立主机用户) Zeus Web Servermatch URL into $ with (.*)/topic-(.+).html?*(.*)$if matched then set URL = $1/portal.php?mod=topic&topic=$2&$3endifmatch URL into $ with (.*)/article-(0-9+)-(0-9+).html?*(.*)$if matched then set URL = $1/portal.php?mod=view&aid=$2&page=$3&$4endifmatch URL into $ with (.*)/forum-(w+)-(0-9+).html?*(.*)$if matched then set URL = $1/forum.php?mod=forumdisplay&fid=$2&page=$3&$4endifmatch URL into $ with (.*)/thread-(0-9+)-(0-9+)-(0-9+).html?*(.*)$if matched then set URL = $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3&$5endifmatch URL into $ with (.*)/group-(0-9+)-(0-9+).html?*(.*)$if matched then set URL = $1/forum.php?mod=group&fid=$2&page=$3&$4endifmatch URL into $ with (.*)/space-(username|uid)-(.+).html?*(.*)$if matched then set URL = $1/home.php?mod=space&$2=$3&$4endifmatch URL into $ with (.*)/blog-(0-9+)-(0-9+).html?*(.*)$if matched then set URL = $1/home.php?mod=space&uid=$2&do=blog&id=$3&$4endifmatch URL into $ with (.*)/(fid|tid)-(0-9+).html?*(.*)$if matched then set URL = $1/index.php?action=$2&value=$3&$4endifmatch URL into $ with (.*)/(a-z+a-z0-9_*)-(a-z0-9_-+).html?*(.*)$if matched then set URL = $1/plugin.php?id=$2:$3&$4endifNginx Web Serverrewrite (.*)/topic-(.+).html$ $1/portal.php?mod=topic&topic=$2 last;rewrite (.*)/article-(0-9+)-(0-9+).html$ $1/portal.php?mod=view&aid=$2&page=$3 last;rewrite (.*)/forum-(w+)-(0-9+).html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;rewrite (.*)/thread-(0-9+)-(0-9+)-(0-9+).html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;rewrite (.*)/group-(0-9+)-(0-9+).html$ $1/forum.php?mod=group&fid=$2&page=$3 last;rewrite (.*)/space-(username|uid)-(.+).html$ $1/home.php?mod=space&$2=$3 last;rewrite (.*)/blog-(0-9+)-(0-9+).html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3 last;rewrite (.*)/(fid|tid)-(0-9+).html$ $1/index.php?action=$2&value=$3 last;rewrite (.*)/(a-z+a-z
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 海南省东方市2025年上半年公开招聘村务工作者试题含答案分析
- 2025版汽车租赁公司驾驶员合同续签与安全驾驶承诺合同正本
- 2025年抵押贷款装修项目质量保证合同范本
- 2025版水暖安装与老旧管网改造合同范本
- 贵州省贞丰县2025年上半年事业单位公开遴选试题含答案分析
- 2025版线下实体店团购业务合作协议
- 2025版万达商业广场购物中心商户信用评价管理服务合同范本
- 2025版汽修行业培训基地厂房租赁服务协议
- 2025年度商场场地租赁与物业管理合同
- 2025年度绿色建筑项目营销推广服务合同
- 肾动脉狭窄的超声诊断课件整理
- 金丝键合工艺培训汇编课件
- 奥维互动地图使用介绍课件
- 小学语文新课程标准最新版2022
- 室外雨污水、消防管网施工方案
- 传染病学总论-人卫最新版课件
- (中职)计算机组装与维修电子课件(完整版)
- (高职)旅游景区服务与管理电子课件完整版PPT全书电子教案
- 部编版七年级语文上册教案(全册)
- 《汉服》PPT课件(完整版)
- 某国有企业精细管理降本增效经验交流汇报材料企业降本增效.doc
评论
0/150
提交评论