這里以discuz x2.0為例做演示說明。首先網(wǎng)站安裝好之后,進(jìn)入網(wǎng)站后臺(tái),點(diǎn)擊“全局”
我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、余杭ssl等。為1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的余杭網(wǎng)站制作公司
seo設(shè)置
全部勾選之后,點(diǎn)擊“提交”
點(diǎn)擊“查看當(dāng)前的 Rewrite 規(guī)則”
點(diǎn)擊“首頁”查看自己的空間服務(wù)器版本
此時(shí)會(huì)有許多偽靜態(tài)方面的規(guī)則可供選擇,根據(jù)自己所用的空間服務(wù)器版本的不同,規(guī)則有所區(qū)別,需要我們選擇相對(duì)應(yīng)的規(guī)則,這里選擇II6規(guī)則
7
將上面紅色標(biāo)記區(qū)域類的代碼復(fù)制下來(#標(biāo)記的都是說明文字,不用復(fù)制),進(jìn)入網(wǎng)站ftp,下載根目錄下的httpd.ini文件
帝國(guó)cms 偽靜態(tài)后臺(tái)設(shè)置方法:
1、在網(wǎng)站根目錄(web文件夾)下建一個(gè)文件,文件名及后綴格式為:httpd.ini
備注:該文件的創(chuàng)建很簡(jiǎn)單,可以隨意命名txt文件為該文件名即可。
2、用txt/記事本模式打開httpd.ini文件,將下面的內(nèi)容復(fù)制到該文件內(nèi):
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteEngine On
#偽靜態(tài)規(guī)則
3、在“#偽靜態(tài)規(guī)則”下面寫入對(duì)應(yīng)網(wǎng)站的偽靜態(tài)規(guī)則即可。
4、帝國(guó)CMS偽靜態(tài)規(guī)則(應(yīng)以官方文件為準(zhǔn)):
RewriteRule ^([0-9]+).([0-9]+)/$ e/action/ShowInfo.php?classid=$1id=$2 [L]
RewriteRule ^([0-9]+).([0-9]+)$ $1.$2/ [L,R=301]
RewriteRule ^([0-9]+)/$ e/action/ListInfo/?classid=$1 [L]
RewriteRule ^([0-9]+)$ $1/ [L,R=301]
RewriteRule ^list([0-9]+).([0-9]+)/$ e/action/ListInfo/index.php?page=$1classid=$2 [L]
RewriteRule ^list([0-9]+).([0-9]+)$ list$1.$2/ [L,R=301]
RewriteRule ^archive([0-9]+).([0-9]+)-([0-9]+)-([0-9]+)/$ e/action/ListInfo.php?classid=$1mid=1tempid=9starttime=$2-$3-$4endtime=$2-$3-$4 [L]
RewriteRule ^archive([0-9]+).([0-9]+)-([0-9]+)-([0-9]+)$ ^archive([0-9]+).([0-9]+)-([0-9]+)-([0-9]+)/ [L,R=301]
配置帝國(guó)cms偽靜態(tài)規(guī)則httpd.ini 文件如下:
[ISAPI_Rewrite]
# 3600= 1hour
CacheClockRate 3600
RewriteEngine On
RepeatLimit 32
#301重定向#
RewriteCond Host: ^phpfensi點(diǎn)抗 $
RewriteRule (.*)ht tp :/ /w ww.phpfensi點(diǎn)抗 $1[I,RP]
#帝國(guó)#
#信息內(nèi)容頁:showinfo-[!--classid--]-[!--id--]-[!--page--].html
RewriteRule ^(.*)/showinfo-(.+?)-(.+?)-(.+?)\.html$ $1/e/action/ShowInfo\.php\?
classid=$2id=$3page=$4
#信息列表:listinfo-[!--classid--]-[!--page--].html
RewriteRule ^(.*)/listinfo-(.+?)-(.+?)\.html$ $1/e/action/ListInfo/index\.php\?
classid=$2page=$3
#標(biāo)題分類列表頁:infotype-[!--ttid--]-[!--page--].html
RewriteRule ^(.*)/infotype-(.+?)-(.+?)\.html$ $1/e/action/InfoType/index\.php\?
ttid=$2page=$3
#TAGS信息列表頁:tags-[!--tagname--]-[!--page--].html
RewriteRule ^(.*)/tags-(.+?)-(.+?)\.html$ $1/e/tags/index\.php\?tagname=$2page=$3
(轉(zhuǎn)載)