帝國(guó)cms 偽靜態(tài)后臺(tái)設(shè)置方法:
專(zhuān)注于為中小企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)鄞州免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上1000家企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
1、在網(wǎng)站根目錄(web文件夾)下建一個(gè)文件,文件名及后綴格式為:httpd.ini
備注:該文件的創(chuàng)建很簡(jiǎn)單,可以隨意命名txt文件為該文件名即可。
2、用txt/記事本模式打開(kāi)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ī)則”下面寫(xiě)入對(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]
1、先進(jìn)入到nginx的配置文件目錄,輸入以下命令:
cd /alidata/server/nginx/conf/rewrite
2、再輸入:ll
3、輸入以下命令:
cd /alidata/server/nginx/conf/vhosts
4、進(jìn)入到網(wǎng)站配置目錄,打開(kāi)配置文件,修改好偽靜態(tài)調(diào)用文件;
5、測(cè)試配置的文件是否正確,輸入:
/alidata/server/nginx/sbin/nginx -t
nginx: the configuration file /alidata/server/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /alidata/server/nginx/conf/nginx.conf test is successful
如果出現(xiàn)以上兩句話就說(shuō)明配置成功了。
6、下面重啟下nginx
/alidata/server/nginx/sbin/nginx -s reload
7、偽靜態(tài)配置完成
用帝國(guó)的站長(zhǎng)們當(dāng)然看中的是他的靈魂功能 安全穩(wěn)定全站生成 但是面對(duì)現(xiàn)實(shí)來(lái)說(shuō) 數(shù)據(jù)量百萬(wàn)內(nèi)可以選擇靜態(tài) 百萬(wàn)以上偽靜態(tài)并且要優(yōu)化很多細(xì)節(jié)比如分布式緩存 讀寫(xiě)分離,當(dāng)然了百萬(wàn)以?xún)?nèi)也可以選擇偽靜態(tài) 只是url自己需要開(kāi)發(fā)diy一個(gè) 默認(rèn)的url品相不好 而靜態(tài)生成可以隨意自定義
配置帝國(guó)cms偽靜態(tài)規(guī)則httpd.ini 文件如下:
[ISAPI_Rewrite]
# 3600= 1hour
CacheClockRate 3600
RewriteEngine On
RepeatLimit 32
#301重定向#
RewriteCond Host: ^phpfensi.com$
RewriteRule (.*)ht tp :/ /w ww.phpfensi.com$1[I,RP]
#帝國(guó)#
#信息內(nèi)容頁(yè):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)題分類(lèi)列表頁(yè):infotype-[!--ttid--]-[!--page--].html
RewriteRule ^(.*)/infotype-(.+?)-(.+?)\.html$ $1/e/action/InfoType/index\.php\?
ttid=$2page=$3
#TAGS信息列表頁(yè):tags-[!--tagname--]-[!--page--].html
RewriteRule ^(.*)/tags-(.+?)-(.+?)\.html$ $1/e/tags/index\.php\?tagname=$2page=$3
(轉(zhuǎn)載)