一、在linux主機下實現(xiàn)偽靜態(tài)
10年積累的成都做網(wǎng)站、網(wǎng)站建設(shè)經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認識你,你也不認識我。但先網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有長海免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
確認虛擬主機是否支持rewrite偽靜態(tài).htaccess文件。添加.htaccess
文件,把htaccess
文件放在網(wǎng)站根目錄。
二、在win主機下實現(xiàn)偽靜態(tài)
確認虛擬主機是否支持rewrite偽靜態(tài)httpd.ini文件。添加httpd.ini文件,把httpd.ini文件放入網(wǎng)站根目錄中。
具體偽靜態(tài)規(guī)則看各自網(wǎng)站程序規(guī)則。
發(fā)布帝國會員空間的偽靜態(tài),其實簡單到弊,關(guān)鍵是你開始想做
nginx版本,用于自己的獨立服務(wù)器,要自己修改域名配置
rewrite
^([^\.])/my([0-9]+)/$
$1/e/space/index.php?userid=$2
last;
rewrite
^([^\.])/my([0-9]+)/(UserInfo|gbook)\.html$
$1/e/space/$3.php?userid=$2
last;
rewrite
^([^\.])/my([0-9]+)/list-([0-9]+)\.html$
$1/e/space/list.php?userid=$2mid=$3
last;
rewrite
^([^\.])/my([0-9]+)/list-([0-9]+)-([0-9]+)\.html$
$1/e/space/list.php?userid=$2mid=$3page=$4
last;
apache版本,用于虛擬主機,一般更新個.htaccess文件到你的網(wǎng)站根目錄就可以了(當(dāng)然要空間支持.htaccess)
RewriteEngine
On
RewriteBase
/
RewriteCond
%{QUERY_STRING}
^(.*)$
RewriteRule
^my([0-9]+)/$
e/space/index.php?userid=$1%1
RewriteCond
%{QUERY_STRING}
^(.*)$
RewriteRule
^my([0-9]+)/(UserInfo|gbook)\.html$
e/space/$2.php?userid=$1%1
RewriteCond
%{QUERY_STRING}
^(.*)$
RewriteRule
^my([0-9]+)/list-([0-9]+)\.html$
e/space/list.php?userid=$1mid=$2%1
RewriteCond
%{QUERY_STRING}
^(.*)$
RewriteRule
^my([0-9]+)/list-([0-9]+)-([0-9]+)\.html$
e/space/list.php?userid=$1mid=$2page=$3%1
以上設(shè)置是基于帝國會員空間的默認版本,主要模式是
http://你的域名/my+會員ID/
的靜態(tài)鏈接形式,my可以改自己的;
可以改成
http://你的域名/my/會員注冊名/
的形式,這時你要禁止會員用中文注冊,
第一行分別改成
nginx
rewrite
^([^\.]*)/my/(.+)/$
$1/e/space/index.php?username=$2
last;
apache
RewriteRule
^my/(.+)/$
e/space/index.php?username=$1%1
其他下面各行要分別按第一行的改動修改一下。
配置帝國cms偽靜態(tài)規(guī)則httpd.ini 文件如下:
[ISAPI_Rewrite]
# 3600= 1hour
CacheClockRate 3600
RewriteEngine On
RepeatLimit 32
#301重定向#
RewriteCond Host: ^phpfensi點抗 $
RewriteRule (.*)ht tp :/ /w ww.phpfensi點抗 $1[I,RP]
#帝國#
#信息內(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
#標題分類列表頁: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)載)
1、先進入到nginx的配置文件目錄,輸入以下命令:
cd /alidata/server/nginx/conf/rewrite
2、再輸入:ll
3、輸入以下命令:
cd /alidata/server/nginx/conf/vhosts
4、進入到網(wǎng)站配置目錄,打開配置文件,修改好偽靜態(tài)調(diào)用文件;
5、測試配置的文件是否正確,輸入:
/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)以上兩句話就說明配置成功了。
6、下面重啟下nginx
/alidata/server/nginx/sbin/nginx -s reload
7、偽靜態(tài)配置完成
帝國cms 偽靜態(tài)后臺設(shè)置方法:
1、在網(wǎng)站根目錄(web文件夾)下建一個文件,文件名及后綴格式為:httpd.ini
備注:該文件的創(chuàng)建很簡單,可以隨意命名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ī)則”下面寫入對應(yīng)網(wǎng)站的偽靜態(tài)規(guī)則即可。
4、帝國CMS偽靜態(tài)規(guī)則(應(yīng)以官方文件為準):
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]