思途CMS系統(tǒng)在Apache服務(wù)器上如何設(shè)置偽靜態(tài)
環(huán)境:
系統(tǒng) Windows
Apache 2.2
加載Rewrite模塊:
在conf目錄下httpd.conf中找到
LoadModule rewrite_module modules/mod_rewrite.so
這句,去掉前邊的注釋符號(hào)“#”,或添加這句。
允許在任何目錄中使用“.htaccess”文件,將“AllowOverride”改成“All”(默認(rèn)為“None”):
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be “All”, “None”, or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
在Windows系統(tǒng)下不能直接建立“.htaccess”文件,可以在命令行下使用“echo a> .htaccess”建立,然后使用記事本編輯。
Apache Rewrite模塊的簡(jiǎn)單應(yīng)用:
Rewrite的所有判斷規(guī)則均基于Perl風(fēng)格的正則表達(dá)式,通過(guò)以下基礎(chǔ)示例能寫(xiě)出符合自己跳轉(zhuǎn)需求的代碼。
1、請(qǐng)求跳轉(zhuǎn)
目的是如果請(qǐng)求為.jsp文件,則跳轉(zhuǎn)至其它域名訪問(wèn)。
例如:訪問(wèn)www.clin003.com/a.php跳轉(zhuǎn)至b.clin003.com/b.php網(wǎng)頁(yè),訪問(wèn)www.clin003.com/news/index.php跳轉(zhuǎn)至b.clin003.com/news/index.php網(wǎng)頁(yè)
注意:不是使用HTML技術(shù)中的meta或者javascript方式,因?yàn)?/span>www.clin003.com/a.php這個(gè)文件并不存在,用的是Apache2.2服務(wù)器中的Rewrite模塊。
修改 .htaccess或apche的配置文件httpd.conf文件,添加以下內(nèi)容
RewriteEngine on
#開(kāi)啟Rewrite模塊
RewriteRule (.*).php$ http://b.clin003.com/$1.jsp [R=301,L,NC]
#截獲所有.jsp請(qǐng)求,跳轉(zhuǎn)到http://b.clin003.com/加上原來(lái)的請(qǐng)求再加上.php。R=301為301跳轉(zhuǎn),L為rewrite規(guī)則到此終止,NC為不區(qū)分大小寫(xiě)
2、域名跳轉(zhuǎn)
如果請(qǐng)求為old.clin003.com下的所有URL,跳轉(zhuǎn)至b.clin003.com
RewriteEngine on
#開(kāi)啟Rewrite模塊
RewriteCond %{REMOTE_HOST} ^old.studenthome.cn$ [NC]
#針對(duì)host為old.clin003.com的主機(jī)做處理,^為開(kāi)始字符,$為結(jié)尾字符
RewriteRule (.*) http://b.clin003.com/$1 [R=301,L,NC]
3、防盜鏈
如果本網(wǎng)站的圖片不想讓其它網(wǎng)站調(diào)用,可以在 .htaccess或者apche的配置文件httpd.conf文件中添加以下內(nèi)容
代碼
RewriteEngine on
#開(kāi)啟Rewrite模塊
RewriteCond %{HTTP_REFERER} !^$
#如果不是直接輸入圖片地址
RewriteCond %{HTTP_REFERER} !img.clin003.com$ [NC]
#且如果不是img.clin003.com所有子域名調(diào)用的
RewriteCond %{HTTP_REFERER} !img.clin003.com/(.*)$ [NC]
RewriteCond %{HTTP_REFERER} !zhuaxia.com [NC]
RewriteCond %{HTTP_REFERER} !google.com [NC]
RewriteCond %{HTTP_REFERER} !google.cn [NC]
RewriteCond %{HTTP_REFERER} !baidu.com [NC]
RewriteCond %{HTTP_REFERER} !feedsky.com [NC]
RewriteRule (.*).(jpg|jpeg|jpe|gif|bmp|png|wma|mp3|wav|avi|mp4|flv|swf)$ http://clin003.com/err.jpg [R=301,L,NC]
#截獲所有.jpg或.jpeg……請(qǐng)求,跳轉(zhuǎn)到http://clin003.com/err.jpg提示錯(cuò)誤的圖片,注:該圖片不能在原域名下,也不能在該.htaccess文件有效控制的文件夾中
4、不需要定義.htaccess文件
在Apache2confhttpd.conf 最后一行添加
RewriteEngine On
RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
重啟Apache
登陸后臺(tái)開(kāi)啟全偽
GD的Linux主機(jī)安裝discuz 7.2的注意了
這個(gè)discuz官方給出的偽靜態(tài)規(guī)則
代碼
# 將 RewriteEngine 模式打開(kāi)
RewriteEngine On
# 修改以下語(yǔ)句中的 /discuz 為你的論壇目錄地址,如果程序放在根目錄中,請(qǐng)將 /discuz 修改為 /
RewriteBase /discuz
# Rewrite 系統(tǒng)規(guī)則請(qǐng)勿修改
RewriteRule ^archiver/((fid|tid)-[w-]+.html)$ archiver/index.php?$1
RewriteRule ^forum-([0-9]+)-([0-9]+).html$ forumdisplay.php?fid=$1&page=$2
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+).html$ viewthread.php?tid=$1&extra=page%3D$3&page=$2
RewriteRule ^space-(username|uid)-(.+).html$ space.php?$1=$2
RewriteRule ^tag-(.+).html$ tag.php?name=$1
使用這個(gè)規(guī)則后,你會(huì)發(fā)現(xiàn),點(diǎn)擊論壇右下角的網(wǎng)站地圖“Archiver”,只能看到板塊,不能打開(kāi)板塊下的帖子
這是修改后的偽靜態(tài)規(guī)則:
代碼
# 將 RewriteEngine 模式打開(kāi)
RewriteEngine On
# 修改以下語(yǔ)句中的 /discuz 為你的論壇目錄地址,如果程序放在根目錄中,請(qǐng)將 /discuz 修改為 /
RewriteBase /
# Rewrite 系統(tǒng)規(guī)則請(qǐng)勿修改
RewriteRule ^archiver/([a-z0-9-]+.html)$ archiver/index.php?$1
RewriteRule ^forum-([0-9]+)-([0-9]+).html$ forumdisplay.php?fid=$1&page=$2
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+).html$ viewthread.php?tid=$1&extra=page%3D$3&page=$2
RewriteRule ^space-(username|uid)-(.+).html$ space.php?$1=$2
RewriteRule ^tag-(.+).html$ tag.php?name=$1
會(huì)員評(píng)論