Nginx/Apache之偽靜態設定 - 運維小結

散盡浮華發表於2019-02-17

 

一、什麼是偽靜態
偽靜態即是網站本身是動態網頁如.php、.asp、.aspx等格式動態網頁有時這類動態網頁還跟"?"加引數來讀取資料庫內不同資料,偽靜態就是做url重寫操作(即rewrite)。很典型的案例即是discuz論壇系統,後臺就有一個設定偽靜態功能,開啟偽靜態後,動態網頁即被轉換重寫成靜態網頁型別頁面,通過瀏覽器訪問地址和真的靜態頁面沒區別。但是記住:做偽靜態的前提就是伺服器要支援偽靜態重寫URL Rewrite功能。

考慮搜尋引擎優化(即SEO),將動態網頁通過伺服器處理成靜態頁面,如www.kevin.com/jk/fd.php?=12這樣的動態網頁處理成www.kevin.com/jk-fd-12.html這樣格式靜態頁面,常見的論壇帖子頁面,都是經過偽靜態處理成靜態頁面格式html頁面。由於網站所用的程式語言不易被發現,經過重寫來偽靜態來將動態網頁的程式字尾變為html的靜態頁面格式。偽靜態是一種可以把檔案字尾改成任何可能的一種方法,比如如果想把php檔案偽靜態成html檔案,這種配置相當簡單的,後面會提到相應配置。

二、真靜態、偽靜態優點和缺點
真靜態(html)優點;1)減少伺服器對資料響應的負荷;2)載入不用調動資料庫,響應速度快。
真靜態缺點:1)維護不方便,每次都要手動生成;2)空間佔用比較大,容易造成磁碟壓力;3)生成的檔案多,伺服器對html檔案的響應負擔也較重。

偽靜態(url重寫)優點:1)可以方便的實現對化化引擎的優化,並且比生成靜態更加方便;2)佔空間比較小;3)首頁每天都自動變化,不用維護。網站首頁一般都有熱點排行之類的,你可以設為,24小時排行,一週排行,再加上最新文章,最新點評等。這樣首頁天天是有變化的;4)便於廣告的輪顯。比如:你可以把 art1234.aspx,這個虛成n個頁,如art_1234.aspx,news_1234.aspx,top_1234.aspx,在不同的頁面放 不同的廣告。總之是動態的,就可以隨意動。
偽靜態缺點:1)如果流量稍大一些使用偽靜態就出現CPU使用超負荷,因為偽靜態是用正則判斷而不是真實地址,分辨到底顯示哪個頁面的責任也由直接指定轉由CPU來判斷了,所以CPU佔有量的上升,確實是偽靜態最大的弊病;2)偽靜態效率不如生成html的,因為它不是真正意義上的靜態頁,所以每次請求都是要去讀取資料庫的資訊(這個可以用快取技術來補償一下)。

三、真靜態、偽靜態原理與實現方案
1、偽靜態
偽靜態是相對於真靜態而言的,就是把一些asp,php等結尾url通過apche或nginx的重寫規則,變成以html一類的靜態頁面形式。偽靜態不是真正的靜態,它和動態地址一樣要讀取資料庫偽靜態最主要的作用就是利於seo,百度spider(百度蜘蛛)喜歡抓取靜態頁面,可容易使百度spider陷入死迴圈;併發量高的時候會加大伺服器的壓力,所以用的時候要注意。

偽靜態就是利用apche,nginx重寫規則,對url地址重寫實現的!偽靜態實現原理:
1) Apache偽靜態前提是要開啟apache的重寫模組 (即開啟"LoadModule rewrite_module modules/mod_rewrite.so"這一行);
2) Nginx預設就支援偽靜態;

偽靜態有兩種配置方式
1) 在配置虛擬主機的時候設定;
2) 在web根目錄下建立一個.htaccess檔案,在這個檔案裡面配置;

2、真靜態
在網站設計中,純粹HTML(標準通用標記語言下的一個應用)格式的網頁通常被稱為"靜態網頁",靜態網頁是標準的HTML檔案,它的副檔名是.htm、.html,可以包含文字、影象、聲音、FLASH動畫、客戶端指令碼和ActiveX控制元件及JAVA小程式等。靜態網頁是網站建設的基礎,早期的網站一般都是由靜態網頁製作的。靜態網頁是相對於動態網頁而言,是指沒有後臺資料庫、不含程式和不可互動的網頁。靜態網頁相對更新起來比較麻煩,適用於一般更新較少的展示型網站。容易誤解的是靜態頁面都是htm這類頁面,實際上靜態也不是完全靜態,它也可以出現各種動態的效果,如GIF格式的動畫、FLASH、滾動字幕等。

大型web專案優化中經常會考慮到使用真靜態,這樣在訪問量大的時候,可以減少cpu的壓力,但是會生成大量的檔案佔用網站的磁碟空間,可以寫個php的指令碼或用linux的計劃任務進行刪除。在用真靜態的時候有的時候需要用到區域性的動態化。

真靜態實現方法
1)利用PHP模板生成靜態頁面;
2)使用PHP檔案讀寫功能生成靜態頁面;
3)使用PHP輸出控制函式快取機制生成靜態頁面;
4)使用nosql從記憶體中讀取內容(其實這個已經不算靜態化了而是快取);
memcached是鍵值一一對應,key預設最大不能超過128個位元組,value預設大小是1M,因此1M大小滿足大多數網頁大小的儲存。

真靜態和偽靜態的區別
1)是不是一個真正靜態頁面;
2)有沒有和資料庫或後臺程式進行互動;
3)它們的應用場景和解決的問題不同;
4)用javascript:alert(document.lastModified)來判斷是真靜態還是偽靜態;

真靜態在apache和nginx上的區別與否
1)真靜態在nginx上的執行速度比apache執行速度快;
2)nginx處理靜態檔案對於apache來說消耗的記憶體少;

偽靜態在apache和nginx上的區別與否
1)本質上沒有區別,兩者都是根據正則匹配對應的url的重寫。但是apache和nginx上的偽靜態規則還是有點不同,在配置的時候要注意;
2)apache處理偽靜態比nginx更有優勢;

先來看個簡單的小例子

跳轉需求:
訪問http://www.kevin.com/p/123456.html  跳轉成  http://a.aa.com/p/123456

配置如下:
rewrite ^/p/(\d+).html    http://www.kevin.com/p/$1 last;

解釋說明:
\d是數字的意思 +是最少一個{1,} 1到無窮大{1,3} 這樣是1-3位數。

四、Nginx偽靜態配置和常用Rewrite偽靜態規則演示集錦

nginx防盜鏈

location ~* \.(gif|jpg|png)$ {
     valid_referers none blocked http://kevin.com:81;    #允許訪問的來源,即所有來自http://kevin.com:81的gif|jpg|png結尾的檔案
     if ($invalid_referer) {
     rewrite ^/ http://kevin.com:81/c2_.html;
     #return 403;
     }
     }

偽靜態重寫

location / {
    rewrite c(\d+)_(.*).html /index.php?c=user&m=index&id=$1&title=$2 last;
    root  /usr/share/nginx/html/sta;
    index index.html index.htm  index.php;
    }

對於生成大量的大量html檔案,推薦使用rsync工具進行批量刪除,做法如下:

1) 建立一個空目錄
# mkdir -p /root/kevin/tmp/

2) 確認需要清空的目標目錄(即需要刪除的大量html檔案所在的目錄),比如/root/kevin/tmp1/

3)使用rsync同步刪除(注意目錄後面的“/”),整體效率會快一個數量級的樣子。
# rsync --delete-before -a -H /root/kevin/tmp/ /root/kevin/tmp1/

選項說明:
–delete-before   接收者在傳輸之前進行刪除操作
–progress        在傳輸時顯示傳輸過程
-a      歸檔模式,表示以遞迴方式傳輸檔案,並保持所有檔案屬性
-H      保持硬連線的檔案
-v      詳細輸出模式
-stats  給出某些檔案的傳輸狀態

如下操作可以把某個超大檔案刪掉,比如刪除/mnt/ops/web.html檔案
1)建立空檔案/mnt/ops/html.txt
2)# rsync --delete-before -a -H -v --progress --stats /mnt/ops/html.txt /mnt/ops/web.html
3)這樣置為空後就可以快速刪掉

原理:
把檔案系統的目錄與書籍的目錄做類比,rm刪除內容時,將目錄的每一個條目逐個刪除(unlink),需要迴圈重複操作很多次;
rsync刪除內容時,建立好新的空目錄,替換掉老目錄,基本沒開銷。

測試大檔案刪除
1)生成檔案
# for i in $(seq 1 500000); do echo test >>/opt/test/$i.txt; done

測試結果:
10萬檔案rm刪除第一次11s左右,第二次9s左右;rsync測試兩次9s左右
50萬檔案rm刪除報錯;rsync測試兩次一個5分左右,一個4分左右                                   

rm刪除命令
# time rm -f /opt/test/*.txt     

rsync命令刪除
# mkdir /opt/test1
# rsync --delete-before -a -H -v --progress --stats /opt/test1/ /opt/test/

nginx php thinkphp5 偽靜態配置

server {
        listen       80;
        server_name  127.0.0.1 localhost;
        #charset koi8-r;
        #access_log  logs/host.access.log  main;

        location / {
            if (!-e $request_filename) {
              #一級目錄
              #rewrite  ^/(.*)$  /index.php?s=$1  last;
              #二級目錄
              rewrite  ^/TWcloud/public/(.*)$  /TWcloud/public/index.php?s=$1  last;
              break;
            }
            root   /Applications/MxSrvs/www;
            index  index.html index.htm index.php;
        }


        location ~ \.php {                                  #去掉$
            root           /Applications/MxSrvs/www;
            fastcgi_pass   127.0.0.1:10080;
            fastcgi_index  index.php;
            fastcgi_split_path_info ^(.+\.php)(.*)$;        #增加這一句
            fastcgi_param PATH_INFO $fastcgi_path_info;     #增加這一句
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
            }
        }

thinkphp 5.0的nginx偽靜態規則 (踩過坑點,經測試實現)

server {
    listen 80;
    server_name www.kevin.com;
    root /data/www/web;

    location / {
        index index.html index.htm index.php default.php;
 
        #重點就是加入下面這個if
        if (!-e $request_filename){
        rewrite  ^(.*)$  /index.php?s=$1  last;   break;
        }
        }

    location ~ .php(.*)$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.html;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_split_path_info ^(.+.php)(.*)$;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        include fastcgi_params;
        }
    }

nginx偽靜態配置小案例

場景一:
把
http://www.abc.com/index.php/front/index/index
重寫成 
http://www.abc.com/a.html

場景二:
把下面帶引數的第1、2個url解析成第3個url
1.http://www.abc.com/index.php/front/index/parse/name/yangxignyi/age/18
2.http://www.abc.com/index.php/front/index/parse?name=yangxignyi&age=18
3.http://www.abc.com/parse-yangxignyi-18.html

伺服器配置檔案:
server{
        listen       80;
        server_name  www.abc.com;
        root   /data/www/web;

        location / {
            index  index.php index.htm /public/index.html;
            autoindex  off;
			include abc.conf;
			#rewrite a.html /index.php/front/index/index last;
        }

        location ~ \.php(.*)$  {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }

偽靜態配置檔案可以直接寫在location /{} 裡面的,不推薦這樣做!!
建議新增加個rewrite.conf檔案,寫偽靜態檔案會好點,include 引入進來就行了,這樣可以在rewrite.conf裡面寫n多配置

location / {
            index  index.php index.htm /public/index.html;
            autoindex  off;
			include rewrite.conf;
			#rewrite a.html /index.php/front/index/index last;
        }

#rewrite.conf (這個檔案自己建立就行了,檔案內容寫規則),偽靜態配置如下:

#場景一的規則
#http://www.abc.com/index.php/front/index/index
rewrite a.html /index.php/front/index/index last;

#場景二的規則
#1.http://www.abc.com/index.php/front/index/parse/name/yangxignyi/age/18
#2.http://www.abc.com/index.php/front/index/parse?name=yangxignyi&age=18
#3.http://www.abc.com/parse-yangxingyi-18.html
rewrite parse-(\w+)-(\d+).html /index.php/front/index/parse/name/$1/age/$2 last;

如上配置中的\w是數字字母下劃線的意思,\d是數字的意思 +是最少一個{1,} 1到無窮大{1,3} 這樣是1-3位數。

nginx配置偽靜態的Rewrite重寫的正則使用說明

正規表示式匹配 :
~      為區分大小寫的匹配
~*     不區分大小寫的匹配(匹配firefox的正則同時匹配FireFox)
!~     區分大小寫的不匹配
!~*    不區分大小寫的不匹配

.      匹配除換行符以外的任意字元
\w     匹配字母或數字或下劃線或漢字
\s     匹配任意的空白符
\d     匹配數字
\b     匹配單詞的開始或結束
^      匹配字串的開始
$      匹配字串的結束

*      重複零次或更多次
+      重複一次或更多次
?      重複零次或一次
{n}    重複n次
{n,}   重複n次或更多次
{n,m}  重複n到m次
*?     重複任意次,但儘可能少重複
+?     重複1次或更多次,但儘可能少重複
??     重複0次或1次,但儘可能少重複
{n,m}? 重複n到m次,但儘可能少重複
{n,}?  重複n次以上,但儘可能少重複

\W     匹配任意不是字母,數字,下劃線,漢字的字元
\S     匹配任意不是空白符的字元
\D     匹配任意非數字的字元
\B     匹配不是單詞開頭或結束的位置
[^x]   匹配除了x以外的任意字元

檔案及目錄匹配,其中:
-f和!-f   用來判斷是否存在檔案
-d和!-d   用來判斷是否存在目錄
-e和!-e   用來判斷是否存在檔案或目錄
-x和!-x   用來判斷檔案是否可執行

flag標記有:
last    相當於Apache裡的[L]標記,表示完成rewrite
break    終止匹配, 不再匹配後面的規則
redirect    返回302臨時重定向 位址列會顯示跳轉後的地址
permanent   返回301永久重定向 位址列會顯示跳轉後的地址

$args    此變數與請求行中的引數相等
$content_length    等於請求行的“Content_Length”的值。
$content_type    等同與請求頭部的”Content_Type”的值
$document_root    等同於當前請求的root指令指定的值
$document_uri 與 $uri 一樣
$host    與請求頭部中“Host”行指定的值或是request到達的server的名字(沒有Host行)一樣
$limit_rate     允許限制的連線速率
$request_method    等同於request的method,通常是“GET”或“POST”
$remote_addr    客戶端ip
$remote_port    客戶端port
$remote_user    等同於使用者名稱,由ngx_http_auth_basic_module認證
$request_filename    當前請求的檔案的路徑名,由root或alias和URI request組合而成
$request_body_file
$request_uri    含有引數的完整的初始URI
$query_string 與 $args一樣
$server_protocol   等同於request的協議,使用“HTTP/1.0”或“HTTP/1.1”
$server_addr request 到達的server的ip,一般獲得此變數的值的目的是進行系統呼叫。為了避免系統呼叫,有必要在listen指令中指明ip,並使用bind引數。
$server_name    請求到達的伺服器名
$server_port    請求到達的伺服器的埠號
$uri   等同於當前request中的URI,可不同於初始值,例如內部重定向時或使用index

nginx偽靜態配置案例集錦

nginx裡使用偽靜態是直接在nginx.conf 中寫規則的,並不需要像apache要開啟寫模組(mod_rewrite)才能進行偽靜態。
nginx只需要開啟nginx.conf配置檔案,在server裡面寫需要的規則即可。

1)配置案例1
server {
	listen       80;
	server_name      www.kevin.com;
	index    index.html index.htm index.php;

	rewrite  ^/wangla.html$  http://www.baidu.com/ permanent;
	rewrite  ^/(\d+).html$   http://www.qq.com/ permanent;
	rewrite  ^/(\w+).html$   http://wd.gyyx.cn/index_wd_v5.htm permanent;
}

以上新增了幾條重寫規則
訪問www.kevin.com/wangla.html跳轉到百度
訪問www.kevin.com/純數字至少一個數字.html跳轉到QQ官網
訪問www.kevin.com/匹配字母或數字或下劃線組合.html 跳轉到問道官網。

2)配置案例2
server { 
   listen       80; 
   server_name  bbs.jb51.net; 
   index index.html index.htm index.php; 
   root  /home/www/bbs;
 
   error_page  404  /404.htm;       #配置404錯誤頁面 

   location ~ .*.(php|php5)?$ { 
     #fastcgi_pass  unix:/tmp/php-cgi.sock; 
     fastcgi_pass  127.0.0.1:9000; 
     fastcgi_index index.php; 
     include fcgi.conf; 
     }

  #下面就是偽靜態了
    location /{ 
       rewrite ^(.*)/equip(d+).html$ $1/index.php?m=content&c=index&a=lists&catid=$2 last; 
    } 
    access_log  access_log   off; 
    } 

然後重啟nginx伺服器偽靜態就生效了,這種維護起來很是不方便我們可以把它寫在外部檔案如bbs_nginx.conf中
在/home/www/bbs目錄下建立bbs_nginx.conf檔案並寫入以下程式碼:
    location /{ 
       rewrite ^(.*)/equip(d+).html$ $1/index.php?m=content&c=index&a=lists&catid=$2 last; 
    } 
 

然後在上面的程式碼後面加上如下程式碼:
    include /home/www/bbs/bbs_nginx.conf; 

這樣網站根目錄中的bbs_nginx.conf偽靜態規則,即可實現單獨管理。

下面是一個例項:
在使用.htaccess檔案的目錄下新建一個.htaccess檔案,如下面一個Discuz論壇目錄:
# vim /var/www/html/jb51/bbs/.htaccess 
rewrite ^(.*)/archiver/((fid|tid)-[w-]+.html)$ $1/archiver/index.php?$2 last; 
rewrite ^(.*)/forum-([0-9]+)-([0-9]+).html$ $1/forumdisplay.php?fid=$2&page=$3 last; 
rewrite ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ $1/viewthread.php?tid=$2&extra=page%3D$4&page=$3 last; 
rewrite ^(.*)/profile-(username|uid)-(.+).html$ $1/viewpro.php?$2=$3 last; 
rewrite ^(.*)/space-(username|uid)-(.+).html$ $1/space.php?$2=$3 last; 
rewrite ^(.*)/tag-(.+).html$ $1/tag.php?name=$2 last; 
 
接著修改nginx配置檔案:
# vim  /etc/nginx/nginx.conf 
在需要新增偽靜態的虛擬主機的server{}中引入.htaccess檔案:
include /var/www/html/jb51/bbs/.htaccess; 

最後重新載入nginx配置檔案:
# /etc/init.d/nginx reload 

3)下面是一些rewrite配置集錦,供運維參考:
=======================================================================================

rewrite "^/(.{6})(\d{3})(.+)/php/" http://www.kevin.com/qq$2.apk break;
中間用到了{6}指前面的字元得復6次

結合PHP的例子
if (!-d $request_filename) {
rewrite ^/([a-z-A-Z]+)/([a-z-A-Z]+)/?(.*)$ /index.php?namespace=user&controller=$1&action=$2&$3 last;
rewrite ^/([a-z-A-Z]+)/?$ /index.php?namespace=user&controller=$1 last;
break;

多目錄轉成引數。 
abc.domian.com/sort/2 => abc.domian.com/index.php?act=sort&name=abc&id=2
配置如下:
if ($host ~* (.*)\.domain\.com) {
set $sub_name $1;
rewrite ^/sort\/(\d+)\/?$ /index.php?act=sort&cid=$sub_name&id=$1 last;
}

目錄對換
/123456/xxxx -> /xxxx?id=123456
配置如下:
rewrite ^/(\d+)/(.+)/ /$2?id=$1 last;

例如下面設定nginx在使用者使用ie的使用重定向到/nginx-ie目錄下:
if ($http_user_agent ~ MSIE) {
rewrite ^(.*)$ /nginx-ie/$1 break;
}

目錄自動加"/"
if (-d $request_filename){
rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
}

禁止htaccess
location ~/\.ht {
deny all;
}

禁止多個目錄
location ~ ^/(cron|templates)/ {
deny all;
break;
}

禁止以/data開頭的檔案
可以禁止/data/下多級目錄下.log.txt等請求;
location ~ ^/data {
deny all;
}

禁止單個目錄
不能禁止.log.txt能請求
location /searchword/cron/ {
deny all;
}

禁止單個檔案
location ~ /data/sql/data.sql {
deny all;
}

給favicon.ico和robots.txt設定過期時間;
這裡為favicon.ico為99 天,robots.txt為7天並不記錄404錯誤日誌
location ~(favicon.ico) {
log_not_found off;
expires 99d;
break;
}
location ~(robots.txt) {
log_not_found off;
expires 7d;
break;
}


設定某個檔案的過期時間;這裡為600秒,並不記錄訪問日誌
location ^~ /html/scripts/loadhead_1.js {
access_log off;
root /opt/lampp/htdocs/web;
expires 600;
break;
}

檔案反盜鏈並設定過期時間
這裡的return 412 為自定義的http狀態碼,預設為403,方便找出正確的盜鏈的請求
"rewrite ^/ http://leech.c1gstudio.com/leech.gif;"顯示一張防盜鏈圖片
"access_log off;"不記錄訪問日誌,減輕壓力
"expires 3d"所有檔案3天的瀏覽器快取
location ~* ^.+\.(jpg|jpeg|gif|png|swf|rar|zip|css|js)$ {
valid_referers none blocked *.c1gstudio.com *.c1gstudio.net localhost 208.97.167.194;
if ($invalid_referer) {
rewrite ^/ http://leech.c1gstudio.com/leech.gif;
return 412;
break;
}
access_log off;
root /opt/lampp/htdocs/web;
expires 3d;
break;
}

只充許固定ip訪問網站,並加上密碼
root /opt/htdocs/www;
allow 218.197.16.14;
allow 22.133.11.22;
allow 21.112.69.14;
deny all;
auth_basic "C1G_ADMIN";
auth_basic_user_file htpasswd;

將多級目錄下的檔案轉成一個檔案,增強seo效果
/job-123-456-789.html 指向/job/123/456/789.html
配置如下:
rewrite ^/job-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /job/$1/$2/jobshow_$3.html last;

--------------------------------------------------------------------------------
將根目錄下某個資料夾指向2級目錄
如/shanghaijob/ 指向 /area/shanghai/
如果你將last改成permanent,那麼瀏覽器位址列顯是 /location/shanghai/
配置如下:
rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2 last;

上面例子有個問題是訪問/shanghai 時將不會匹配
rewrite ^/([0-9a-z]+)job$ /area/$1/ last;
rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2 last;

這樣/shanghai 也可以訪問了,但頁面中的相對連結無法使用,
如./list_1.html真實地址是/area /shanghia/list_1.html會變成/list_1.html,導至無法訪問。

那加上自動跳轉也是不行的!
(-d $request_filename)它有個條件是必需為真實目錄,而我的rewrite不是的,所以沒有效果。
if (-d $request_filename){
rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
}

知道原因後就好辦了,手動跳轉吧
rewrite ^/([0-9a-z]+)job$ /$1job/ permanent;
rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2 last;
--------------------------------------------------------------------------------

檔案和目錄不存在的時候重定向:
if (!-e $request_filename) {
proxy_pass http://127.0.0.1/;
}

域名跳轉
server {
listen 80;
server_name jump.c1gstudio.com;
index index.html index.htm index.php;
root /opt/lampp/htdocs/www;
rewrite ^/ http://www.c1gstudio.com/;
access_log off;
}

多域名轉向
server_name http://www.c1gstudio.com/ http://www.c1gstudio.net/;
index index.html index.htm index.php;
root /opt/lampp/htdocs;
if ($host ~ "c1gstudio\.net") {
rewrite ^(.*) http://www.c1gstudio.com$1/ permanent;
}

三級域名跳轉
if ($http_host ~* "^(.*)\.i\.c1gstudio\.com$") {
rewrite ^(.*) http://top.yingjiesheng.com$1/;
break;
}

域名鏡向
server
{
listen 80;
server_name mirror.c1gstudio.com;
index index.html index.htm index.php;
root /opt/lampp/htdocs/www;
rewrite ^/(.*) http://www.c1gstudio.com/$1 last;
access_log off;
}

某個子目錄作鏡向
location ^~ /zhaopinhui {
rewrite ^.+ http://zph.c1gstudio.com/ last;
break;
}

discuz ucenter home (uchome) rewrite偽靜態配置
rewrite ^/(space|network)-(.+)\.html$ /$1.php?rewrite=$2 last;
rewrite ^/(space|network)\.html$ /$1.php last;
rewrite ^/([0-9]+)$ /space.php?uid=$1 last;

discuz 7 rewrite偽靜態配置
rewrite ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php?$2 last;
rewrite ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php?fid=$2&page=$3 last;
rewrite ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php?tid=$2&extra=page\=$4&page=$3 last;
rewrite ^(.*)/profile-(username|uid)-(.+)\.html$ $1/viewpro.php?$2=$3 last;
rewrite ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php?$2=$3 last;
rewrite ^(.*)/tag-(.+)\.html$ $1/tag.php?name=$2 last;

給discuz某版塊單獨配置域名
server_name bbs.c1gstudio.com news.c1gstudio.com;
location = / {
if ($http_host ~ news\.c1gstudio.com$) {
rewrite ^.+ http://news.c1gstudio.com/forum-831-1.html last;
break;
}
}

discuz ucenter 頭像 rewrite 優化
location ^~ /ucenter {
location ~ .*\.php?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location /ucenter/data/avatar {
log_not_found off;
access_log off;
location ~ /(.*)_big\.jpg$ {
error_page 404 /ucenter/images/noavatar_big.gif;
}
location ~ /(.*)_middle\.jpg$ {
error_page 404 /ucenter/images/noavatar_middle.gif;
}
location ~ /(.*)_small\.jpg$ {
error_page 404 /ucenter/images/noavatar_small.gif;
}
expires 300;
break;
}
}

jspace rewrite偽靜態配置
location ~ .*\.php?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location ~* ^/index.php/
{
rewrite ^/index.php/(.*) /index.php?$1 break;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}

Nginx偽靜態配置案例

公司域名bo.kevin.com下有多個子專案目錄結構大致是bo.kevin.com/own/xys |bo.kevin.com/2017/abc |bo.kevin.com/2018/def有二級也有三級目錄,
應開發需求某專案訪問地址是:bo.kevin.com/own/xys/index.php/admin/login 需要把index.php隱藏為bo.kevin.com/own/xys/index/admin/login進行訪問。

設定以下三種場景:
場景一
將 http://www.abc.com/index.php/front/index/index
重寫成 http://www.abc.com/a.html

場景二
將 http://www.abc.com/index.php/front/index/parse?name=itboy&age=18
重寫成 http://www.abc.com/parse-itboy-18.html

場景三(同一域名下,需要匹配隨時新增的二三級目錄,並隱藏index.php的.php字尾)
將 http://bo.kevin.com/own/xys/index.php/admin/login  以及 http://bo.kevin.com/2018/gdhp/index.php/login
重寫成 http://bo.kevin.com/own/xys/index/admin/login 以及 http://bo.kevin.com/2018/gdhp

建議在nginx/conf目錄下新建rewrite.conf配置檔案中編寫偽靜態規則,寫完後在域名.conf檔案中插入rewrite.conf檔案即可(用include rewrite.conf插入)。

nginx配置檔案如下:
server
    {
        listen 80;
        server_name bo.kevin.com;
        index index.html index.php index.htm index.php default.html default.htm default.php;
        root  /var/www/apps/bo.kevin.com;
        include rewrite.conf;

        include none.conf;
        error_page   502   /502.html;
        include enable-php-pathinfo.conf;

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log  /var/www/wwwlogs/bo.kevin.com.log;
        error_log  /var/www/wwwlogs/error.bo.kevin.com.log;
    }

rewrite.conf檔案內容如下:
location /{
	#場景一
	#http://www.abc.com/index.php/front/index/index 變成 http://www.abc.com/a.html
	rewrite a.html /index.php/front/index/index last;

	#場景二
	#http://www.abc.com/index.php/front/index/parse?name=itboy&age=18 變成 http://www.abc.com/parse-itboy-18.html
	rewrite parse-(\w+)-(\d+).html /index.php/front/index/parse/name/$1/age/$2 last;

	#場景三
	#http://bo.kevin.com/own/xys/index.php/admin/login 以及 http://bo.kevin.com/2018/gdhp/index.php/login 
	#變成 http://bo.kevin.com/own/xys/index/admin/login 以及 http://bo.kevin.com/2018/gdhp/index/login
        rewrite ^/(\w+)/(\w+)/(.*)$ /$1/$2/index.php?s=$3 last;  #針對own目錄偽靜態規則,$1對應(\w+)部分,$2對應第二個(\w+)部分,$3對應(.*)部分,$代表直至最後
        rewrite ^/(\d+)/(\w+)/(.*)$ /$1/$2/index.php?s=$3 last;  #針對後期的2018下的子專案偽靜態規則
}

說明:
其實都是很簡單的對號入座原理而已,拿場景二來說明,第一個正則(\w+)對應的就是$1,第二個正則(\d+)對應的就是$2,
另外,\w是數字字母下劃線的意思,\d是數字的意思 +是最少一個{1,} 1到無窮大{1,3} 這樣是1-3位數。

Nginx上支援.htaccess偽靜態的配置例項

# vim /usr/local/nginx/conf/vhost/web.conf
........
include /var/www/web/.htaccess

# vim /var/www/web/.htaccess
rewrite ^/show-([0-9]+)-([0-9]+)\.html$ /index.php?action=show&id=$1&page=$2;
rewrite ^/category-([0-9]+)-([0-9]+)\.html$ /index.php?action=index&cid=$1&page=$2;
rewrite ^/archives-([0-9]+)-([0-9]+)\.html$ /index.php?action=index&setdate=$1&page=$2;
rewrite ^/(archives|search|reg|login|index|links)\.html$ /index.php?action=$1;
rewrite ^/(comments|tagslist|trackbacks|index)-([0-9]+)\.html$ /index.php?action=$1&page=$2;
if ($host != 'www.shibo.com' ) {  
  rewrite ^/(.*)$ http://www.shibo.com/$1 permanent;  
} 
error_page  404 http://www.shibo.com/;

# /usr/local/nginx/sbin/nginx -s reload

解決nginx配置偽靜態(去除框架的Index.php)

在nginx.conf中Location/{}中加上下面這個if判斷就可以了:
location /{

   if (!-e $request_filename) {
       rewrite ^(.*)$ /index.php?s=$1 last; break;
   }
}

===============================================================================
如下面一個配置
if (!-e $request_filename) { 
    rewrite ^/(.*)/(.*)/(.*)/(.*)/(.*)/(.*)/(.*)\.html /index.php?m=$1&c=$2&a=$3&$4=$5&$6=$7 last; 
    break; 
    }

Nginx 常用偽靜態配置

訪問 http://www.kevin.com/sort/15.html -> http://www.kevin.com/1.php?id=15

location / {
    root /usr/share/nginx/html/1;
    index index.html;		
    rewrite /sort/(.*)\.html /1.php?id=$1 last;
    }

================================================================================
再如下面一個配置
server {
    listen 80 default_server;
    server_name _;
    location / {
        root /usr/share/nginx/html;
        index index.html index.htm;
        rewrite ^(.*)list-([0-9]+)-([0-9]+)\.html$ $1list.php?page=$2&id=$3;
        }
    }

策略:RewriteRule ^(.*)list-([0-9]+)-([0-9]+)\.html$ $1list.php?page=$2&id=$3
請求路徑:http://www.abc.com/list-123-456.html 

以上策略分成兩段:
第一段是使用正規表示式去匹配請求訪問的路徑,第二段是將匹配後的引數轉化為真實訪問的路徑。

策略執行時:^(.*)list-([0-9]+)-([0-9]+)\.html$ 與 /list-123-456.html 這個字串進行匹配:
^和$字元分別代表了匹配輸入字串的開始和結束;
()中的匹配到的內容會被按順序分配到變數$1 $2 $3中;
.*匹配任意字串,且長度從0個到多個,故$1值為/;
[0-9]+匹配字元0-9,長度1個到多個,故$2和$3分別是123和456;

所以最後真實訪問的動態地址為 /list.php?page=123&id=456

================================================================================
再如下面一個配置
1)/a/b?c=d => index.php?_a=a&_m=b&c=d
2)/xxx/detail-yyy.html => index.php?_a=xxx&_m=detail&id=yyy

配置如下:
server {
    listen       80;
    server_name  my.xh5.com;
 
    location / {
        root   /mnt/hgfs/web/my.xueh5.com/src/;
        index  index.html index.htm index.php;
 
        if ($args ~ "^(.*)$"){
            set $rule_0 1$rule_0;
            set $bref_1 $1;
        }
        if ($rule_0 = "1"){
            rewrite ^([0-9a-zA-Z]*)/detail-([0-9]*)\.html$ /index.php?_a=$1&_m=detail&id=$2&$bref_1 last;
            rewrite ^/([0-9a-zA-Z]*)/([0-9a-zA-Z.]*)$ /index.php?_a=$1&_m=$2&$bref_1 last;
            rewrite ^/([0-9a-zA-Z]+)$ /index.php?_a=$1&_m=index&$bref_1 last;
            rewrite ^/$ /index.php?_a=index&_m=index&$bref_1 last;
        }
    }
 
    location ~ \.php$ {
        root           /mnt/hgfs/web/my.xueh5.com/src/;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

Nginx常用偽靜態規則小總結

1)WordPress偽靜態
if (-f $request_filename/index.html){
rewrite (.) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}

2)PHPCMS偽靜態
rewrite ^/caipu-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 last;
rewrite ^/content-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 last;
rewrite ^/list-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=lists&catid=$1&page=$2 last;
rewrite ^/tag-([^.])-([0-9]+)-([0-9]+).html /index.php?m=content&c=tag&catid=$2&tag=$1&page=$3 last;
rewrite ^/comment-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=comment&c=index&a=init&commentid=content_$1-$2-$3 last;
rewrite ^/([^.]).html /index.php?m=member&c=index&a=$1 last;

3)DEDECMS偽靜態
rewrite "^/index.html$" /index.php last;
rewrite "^/list-([0-9]+).html$" /plus/list.php?tid=$1 last;
rewrite "^/list-([0-9]+)-([0-9]+)-([0-9]+).html$" /plus/list.php?tid=$1&totalresult=$2&PageNo=$3 last;
rewrite "^/view-([0-9]+)-1.html$" /plus/view.php?arcID=$1 last;
rewrite "^/view-([0-9]+)-([0-9]+).html$" /plus/view.php?aid=$1&pageno=$2 last;
rewrite "^/tags.html$" /tags.php last;
rewrite "^/tag-([0-9]+)-([0-9]+).html$" /tags.php?/$1/$2/ last;

4)Discuz7偽靜態
rewrite ^/archiver/((fid|tid)-[\w-]+.html)$ /archiver/index.php?$1 last;
rewrite ^/forum-([0-9]+)-([0-9]+).html$ /forumdisplay.php?fid=$1&page=$2 last;
rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ /viewthread.php?tid=$1&extra=page\%3D$3&page=$2 last;
rewrite ^/space-(username|uid)-(.+).html$ /space.php?$1=$2 last;
rewrite ^/tag-(.+).html$ /tag.php?name=$1 last;

5)DiscuzX偽靜態
rewrite ^([^.])/topic-(.+).html$ $1/portal.php?mod=topic&topic=$2 last;
rewrite ^([^.])/article-([0-9]+)-([0-9]+).html$ $1/portal.php?mod=view&aid=$2&page=$3 last;
rewrite ^([^.])/forum-(\w+)-([0-9]+).html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
rewrite ^([^.])/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;
rewrite ^([^.])/group-([0-9]+)-([0-9]+).html$ $1/forum.php?mod=group&fid=$2&page=$3 last;
rewrite ^([^.])/space-(username|uid)-(.+).html$ $1/home.php?mod=space&$2=$3 last;
rewrite ^([^.]*)/([a-z]+)-(.+).html$ $1/$2.php?rewrite=$3 last;
if (!-e $request_filename) {
return 404;
}

6)ECSHOP偽靜態
if (!-e $request_filename)
{
rewrite "^/index.html" /index.php last;
rewrite "^/category$" /index.php last;
rewrite "^/feed-c([0-9]+).xml$" /feed.php?cat=$1 last;
rewrite "^/feed-b([0-9]+).xml$" /feed.php?brand=$1 last;
rewrite "^/feed.xml$" /feed.php last;
rewrite "^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-])-([0-9]+)-(.+)-([a-zA-Z]+)(.).html$" /category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5&page=$6&sort=$7&order=$8 last;
rewrite "^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-])(.).html$" /category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5 last;
rewrite "^/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.).html$" /category.php?id=$1&brand=$2&page=$3&sort=$4&order=$5 last;
rewrite "^/category-([0-9]+)-b([0-9]+)-([0-9]+)(.).html$" /category.php?id=$1&brand=$2&page=$3 last;
rewrite "^/category-([0-9]+)-b([0-9]+)(.).html$" /category.php?id=$1&brand=$2 last;
rewrite "^/category-([0-9]+)(.).html$" /category.php?id=$1 last;
rewrite "^/goods-([0-9]+)(.).html" /goods.php?id=$1 last;
rewrite "^/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.).html$" /article_cat.php?id=$1&page=$2&sort=$3&order=$4 last;
rewrite "^/article_cat-([0-9]+)-([0-9]+)(.).html$" /article_cat.php?id=$1&page=$2 last;
rewrite "^/article_cat-([0-9]+)(.).html$" /article_cat.php?id=$1 last;
rewrite "^/article-([0-9]+)(.).html$" /article.php?id=$1 last;
rewrite "^/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+).html" /brand.php?id=$1&cat=$2&page=$3&sort=$4&order=$5 last;
rewrite "^/brand-([0-9]+)-c([0-9]+)-([0-9]+)(.).html" /brand.php?id=$1&cat=$2&page=$3 last;
rewrite "^/brand-([0-9]+)-c([0-9]+)(.).html" /brand.php?id=$1&cat=$2 last;
rewrite "^/brand-([0-9]+)(.).html" /brand.php?id=$1 last;
rewrite "^/tag-(.).html" /search.php?keywords=$1 last;
rewrite "^/snatch-([0-9]+).html$" /snatch.php?id=$1 last;
rewrite "^/group_buy-([0-9]+).html$" /group_buy.php?act=view&id=$1 last;
rewrite "^/auction-([0-9]+).html$" /auction.php?act=view&id=$1 last;
rewrite "^/exchange-id([0-9]+)(.).html$" /exchange.php?id=$1&act=view last;
rewrite "^/exchange-([0-9]+)-min([0-9]+)-max([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.).html$" /exchange.php?cat_id=$1&integral_min=$2&integral_max=$3&page=$4&sort=$5&order=$6 last;
rewrite ^/exchange-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.).html$" /exchange.php?cat_id=$1&page=$2&sort=$3&order=$4 last;
rewrite "^/exchange-([0-9]+)-([0-9]+)(.).html$" /exchange.php?cat_id=$1&page=$2 last;
rewrite "^/exchange-([0-9]+)(.).html$" /exchange.php?cat_id=$1 last;
}

7)PHPWind偽靜態
rewrite ^(.)-htm-(.)$ $1.php?$2 last;
rewrite ^(.*)/simple/([a-z0-9_]+.html)$ $1/simple/index.php?$2 last;

8)SaBlog2.0偽靜態
只帶月份的歸檔
rewrite "^/date/([0-9]{6})/?([0-9]+)?/?$" /index.php?action=article&setdate=$1&page=$2 last;

無分類翻頁
rewrite ^/page/([0-9]+)?/?$ /index.php?action=article&page=$1 last;

分類
rewrite ^/category/([0-9]+)/?([0-9]+)?/?$ /index.php?action=article&cid=$1&page=$2 last;
rewrite ^/category/([^/]+)/?([0-9]+)?/?$ /index.php?action=article&curl=$1&page=$2 last;

歸檔、高階搜尋
rewrite ^/(archives|search|article|links)/?$ /index.php?action=$1 last;

全部評論、標籤列表、引用列表 帶分頁
rewrite ^/(comments|tagslist|trackbacks|article)/?([0-9]+)?/?$ /index.php?action=$1&page=$2 last;

tags
rewrite ^/tag/([^/]+)/?([0-9]+)?/?$ /index.php?action=article&item=$1&page=$2 last;

文章
rewrite ^/archives/([0-9]+)/?([0-9]+)?/?$ /index.php?action=show&id=$1&page=$2 last;

RSS rewrite ^/rss/([0-9]+)?/?$ /rss.php?cid=$1 last;
rewrite ^/rss/([^/]+)/?$ /rss.php?url=$1 last;

使用者 rewrite ^/uid/([0-9]+)/?([0-9]+)?/?$ /index.php?action=article&uid=$1&page=$2 last;
rewrite ^/user/([^/]+)/?([0-9]+)?/?$ /index.php?action=article&user=$1&page=$2 last;

地圖檔案
rewrite sitemap.xml sitemap.php last;

自定義連結
rewrite ^(.*)/([0-9a-zA-Z-_]+)/?([0-9]+)?/?$ $1/index.php?action=show&alias=$2&page=$3 last;

9)SHOPEX偽靜態
if (!-e $request_filename) {
rewrite ^/(.+.(html|xml|json|htm|php|jsp|asp|shtml))$ /index.php?$1 last;
}

10)Typecho偽靜態
if (-f $request_filename/index.html){
rewrite (.) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}

Nginx中的rewrite只能放在server{},location{},if{}中,並且只能對域名後邊的除去傳遞的引數外的字串起作用。

rewrite偽靜態重寫的執行順序:
(location =) > (location 完整路徑) > (location ^~ 路徑) > (location ~,~* 正則順序) > (location 部分起始路徑) > (/)

五、Apache偽靜態配置和常用Rewrite偽靜態規則演示集錦

Apache虛擬機器配置及偽靜態規則

1)編輯Apache的conf目錄下的httpd.conf檔案。
去除"# LoadModule rewrite_module modules/mod_rewrite.so"的註釋,開啟mod_rewrite.so模組支援。
去除"# Include conf/extra/httpd-vhosts.conf"的註釋,引入虛擬機器配置檔案。

2) 編輯httpd-vhost.conf
<VirtualHost *:80>
    #發生錯誤時將傳送郵件
    #ServerAdmin test@kevin.com
    #文件根目錄
    DocumentRoot "/data/www/httpd"
    #域名
    ServerName www.kevin.com
    #錯誤日誌
    ErrorLog "logs/error.log"
    #訪問日誌
    CustomLog "logs/access.log"
    #配置rewrite相關選項
    <Directory "/data/www/httpd">
        #允許所有指令,這將允許.htaccess
        AllowOverride All
        #2.2的訪問控制配置,先檢查允許的條件,沒有允許的全部禁止,中間只能有一個逗號不能有空格
        #Order Allow,Deny
        #Allow from All
        #2.4的訪問控制配置,效果等同以上
        Require all granted
    </Directory>

3) 修改.htaccess
#以下表示:如果存在目錄或檔案則直接訪問,否則執行RewriteRule
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#隱藏index.php
RewriteRule ^(.*)$ index.php/$1 [L]

4) 重啟apache服務

Apache偽靜態配置示例

偽靜態就是將原來動態化的頁面址轉換成為靜態化的地址。
例如:
原訪問地址:http://www.test.com/list.php?page=123&id=456
偽靜態地址:http://www.test.com/list-123-456.html

操作方法:
1)首先確認Apache已經正確載入了mod_rewrite模組
檢查httpd.conf中是否有LoadModule Rewrite_module modules/mod_Rewrite.so這段程式碼,如沒有請加上。

2)策略配置。現有一個網站,根目錄為/var/www/html,動態頁面地址為/list.php?page=123&id=456,現在我們想要的效果是/list-123-456.html

2.1)使用httpd.conf來配置rewrite策略:
要使用httpd.conf檔案來設定偽靜態策略,可以直接在httpd.conf中寫入如下程式碼,如果網站是配置在VirtualHost中,
則將這段程式碼加到對應的<VirtualHost hostname><VirtualHost>標籤內:

<IfModule mod_rewrite.c>
#輸入: list-123-456.html 
#輸出: list.php?page=123&id=456 
RewriteEngine on
RewriteRule ^(.*)list-([0-9]+)-([0-9]+)\.html$ $1list.php?page=$1&id=$2
</IfModule>

新增完成後重啟httpd服務後即可生效

2.2)使用.htaccess來配置rewrite策略
檢查httpd.conf中的<Directory />標籤配置,確認AllowOverride配置為All,這樣才能啟用.htaccess檔案:

<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
檢查httpd.conf中的AccessFileName引數,確認為.htaccess
AccessFileName .htaccess

在網站根目錄下建立.htaccess檔案,寫入如下內容:
RewriteEngine on 
RewriteRule ^(.*)list-([0-9]+)-([0-9]+)\.html$ $1list.php?page=$2&id=$3

儲存後重啟httpd服務即可生效

常見問題:
1)為何都按上面設定了卻還是無法靜態化?
答:很有可能是因為別的目錄設定項覆蓋了<Directory />標籤內的選項,導致.htaccess檔案沒起作用。
這個問題一般出現在網站根目錄的Directory標籤中,在這個例子中,可以檢查<Directroy"/var/www/html">標籤內的AllowOverride引數是否設定為All。

2).htaccess檔案放在網站根目錄,那子目錄也可以實現偽靜態嗎?
答:.htaccess預設對所在目錄下所有子目錄生效,但是如果子目錄中也放置了.htaccess檔案,則該子目錄下的訪問規則以子目錄中的.htaccess檔案為準。

Apache開啟偽靜態示例(修改"AllowOverride ALL",開啟支援.htaccess偽靜態檔案的功能)

偽靜態只是改變了URL的顯示形式,實際上還是網站頁面還是動態頁面。偽靜態的頁面字尾可以是html 、 htm 或者是目錄格式等。那麼為什麼要用偽靜態呢?
有兩點原因:1是seo優化,偽靜態有利於搜尋引擎的收錄,能夠增加網站優化效果;2是url看起來簡單,網站URL給人專業性。

1)載入Rewrite模組:
在conf目錄下httpd.conf中找到
LoadModule rewrite_module modules/mod_rewrite.so
 
2)允許在任何目錄中使用“.htaccess”檔案,將“AllowOverride”改成“All”(預設為“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
 
# 把 AllowOverride None 改為 AllowOverride All,重啟一下apache伺服器使配置生效,這樣就支援.htaccess檔案了。
 
3)Apache Rewrite模組的簡單應用
Rewrite的所有判斷規則均基於Perl風格的正規表示式,通過以下基礎示例能寫出符合自己跳轉需求的程式碼。
 
3.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為不區分大小寫
 
3.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.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檔案有效控制的資料夾中

對配置做幾點補充說明:
L   表明當前規則是最後一條規則,停止分析以後重寫 
NC  不區分大小寫 
QSA 追加請求的字串 
^   表示語句開始 
$   表示語句的結束
 
3.4)不需要定義.htaccess檔案
在Apache2\conf\httpd.conf 最後一行新增
RewriteEngine On
RewriteRule ^(.*)-htm-(.*)$ $1.php?$2

Apache各種跳轉(包括偽靜態)的配置

1)404跳轉:
#vim /etc/httpd/conf/httpd.conf
在虛擬主機配置裡新增一行:ErrorDocument 404 /404.html 

2)301跳轉:
將不帶www的跳轉到帶www的:在根目錄下新建.htaccess檔案,寫入:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^manyi.cc [NC]
RewriteRule ^(.*)$ http://www.manyi.cc/$1 [L,R=301]

重定向到新域名:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(.*)$ http://www.manyi.cc/$1 [L,R=301]

3)在httpd.conf配置檔案中配置:
<VirtualHost *:80>
ServerName manyi.cc
RedirectMatch permanent ^/(.*) http://www.manyi.cc/$1
</VirtualHost>

使用正則進行301偽靜態配置:(將news.php?id=123這樣的地址轉向到news-123.html)
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^news-(.+)\.html$ news.php?id=$1

FastCGI載入PHP偽靜態設定的注意事項

預設的"RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]"規則在apache fastcgi模式下會導致"No input file specified".
修改成
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
這樣就好了,地址正常重寫。

#php api模式,伺服器能識別PATH_INFO
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

#php fastcgi模式 伺服器不識別PATH_INFO
RewriteRule ^(.*)$ index.php [E=PATH_INFO:$1,QSA,PT,L]

相關文章