這里以discuz x2.0為例做演示說明。首先網(wǎng)站安裝好之后,進入網(wǎng)站后臺,點擊“全局”
10多年的嵊州網(wǎng)站建設經驗,針對設計、前端、開發(fā)、售后、文案、推廣等六對一服務,響應快,48小時及時工作處理。全網(wǎng)整合營銷推廣的優(yōu)勢是能夠根據(jù)用戶設備顯示端的尺寸不同,自動調整嵊州建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)公司從事“嵊州網(wǎng)站設計”,“嵊州網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。
seo設置
全部勾選之后,點擊“提交”
點擊“查看當前的 Rewrite 規(guī)則”
點擊“首頁”查看自己的空間服務器版本
此時會有許多偽靜態(tài)方面的規(guī)則可供選擇,根據(jù)自己所用的空間服務器版本的不同,規(guī)則有所區(qū)別,需要我們選擇相對應的規(guī)則,這里選擇II6規(guī)則
7
將上面紅色標記區(qū)域類的代碼復制下來(#標記的都是說明文字,不用復制),進入網(wǎng)站ftp,下載根目錄下的httpd.ini文件
配置帝國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]
#帝國#
#信息內容頁: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
(轉載)
1、先進入到nginx的配置文件目錄,輸入以下命令:
cd /alidata/server/nginx/conf/rewrite
2、再輸入:ll
3、輸入以下命令:
cd /alidata/server/nginx/conf/vhosts
4、進入到網(wǎng)站配置目錄,打開配置文件,修改好偽靜態(tài)調用文件;
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)配置完成