Apache開啓僞靜態示例javascript
環境:
系統 Windows
Apache 2.2php
加載Rewrite模塊:html
在conf目錄下httpd.conf中找到java
LoadModule rewrite_module modules/mod_rewrite.so正則表達式
這句,去掉前邊的註釋符號「#」,或添加這句。服務器
容許在任何目錄中使用「.htaccess」文件,將「AllowOverride」改爲「All」(默認爲「None」):jsp
# 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 Allide
在Windows系統下不能直接創建「.htaccess」文件,能夠在命令行下使用「echo a> .htaccess」創建,而後使用記事本編輯。網站
Apache Rewrite模塊的簡單應用:
Rewrite的全部判斷規則均基於Perl風格的正則表達式,經過如下基礎示例能寫出符合本身跳轉需求的代碼。ui
1、請求跳轉
目的是若是請求爲.jsp文件,則跳轉至其它域名訪問。
例如:訪問www.clin003.com/a.php跳轉至b.clin003.com/b.php網頁,訪問www.clin003.com/news/index.php跳轉至b.clin003.com/news/index.php網頁
注意:不是使用HTML技術中的meta或者javascript方式,由於www.clin003.com/a.php這個文件並不存在,用的是Apache2.2服務器中的Rewrite模塊。
修改 .htaccess或apche的配置文件httpd.conf文件,添加如下內容
RewriteEngine on
#開啓Rewrite模塊
RewriteRule (.*)\.php$ http://b.clin003.com/$1\.jsp [R=301,L,NC]
#截獲全部.jsp請求,跳轉到http://b.clin003.com/加上原來的請求再加上.php。R=301爲301跳轉,L爲rewrite規則到此終止,NC爲不區分大小寫
2、域名跳轉
若是請求爲old.clin003.com下的全部URL,跳轉至b.clin003.com
RewriteEngine on
#開啓Rewrite模塊
RewriteCond %{REMOTE_HOST} ^old.studenthome.cn$ [NC]
#針對host爲old.clin003.com的主機作處理,^爲開始字符,$爲結尾字符
RewriteRule (.*) http://b.clin003.com/$1 [R=301,L,NC]
3、防盜鏈
若是本網站的圖片不想讓其它網站調用,能夠在 .htaccess或者apche的配置文件httpd.conf文件中添加如下內容
代碼
RewriteEngine on
#開啓Rewrite模塊
RewriteCond %{HTTP_REFERER} !^$
#若是不是直接輸入圖片地址
RewriteCond %{HTTP_REFERER} !img.clin003.com$ [NC]
#且若是不是img.clin003.com全部子域名調用的
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……請求,跳轉到http://clin003.com/err.jpg提示錯誤的圖片,注:該圖片不能在原域名下,也不能在該.htaccess文件有效控制的文件夾中
4、不須要定義.htaccess文件
在Apache2\conf\httpd.conf 最後一行添加
RewriteEngine On
RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
重啓Apache
登錄後臺開啓全僞
這個discuz官方給出的僞靜態規則
代碼
# 將 RewriteEngine 模式打開
RewriteEngine On
# 修改如下語句中的 /discuz 爲你的論壇目錄地址,若是程序放在根目錄中,請將 /discuz 修改成 /
RewriteBase /discuz
# Rewrite 系統規則請勿修改
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
使用這個規則後,你會發現,點擊論壇右下角的網站地圖「Archiver」,只能看到板塊,不能打開板塊下的帖子
這是修改後的僞靜態規則:
代碼
# 將 RewriteEngine 模式打開
RewriteEngine On
# 修改如下語句中的 /discuz 爲你的論壇目錄地址,若是程序放在根目錄中,請將 /discuz 修改成 /
RewriteBase /
# Rewrite 系統規則請勿修改
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