首頁  >  文章  >  後端開發  >  關於Nginx設定檔及ReWriteUrl那點事~

關於Nginx設定檔及ReWriteUrl那點事~

WBOY
WBOY原創
2016-07-30 13:29:34973瀏覽

Nginx Rewrite規則相關指令 
Nginx Rewrite規則相關指令有if、rewrite、set、return、break等,其中rewrite是最關鍵的指令。一個簡單的Nginx Rewrite規則語法如下:

rewrite ^/b/(.*).html /play.php?video=$1 break;

如果加上if語句,範例如下:

if (!- f $request_filename)

rewrite ^/img/(.*)$ /site/$host/images/$1 last;

Nginx與Apache的Rewrite規則實例對比

簡單的Nginx和Apache 重寫規則區別不大,基本上能夠完全相容。例如:

Apache Rewrite 規則:

RewriteRule ^/(mianshi|xianjing)/$ /zl/index.php?name=$1 [L]

RewriteRule ^/ceshi/$ /zl/ceshi。

RewriteRule ^/(mianshi)_([a-zA-Z]+)/$ /zl/index.php?name=$1_$2 [L]

RewriteRule ^/pingce([0-9]*) /$ /zl/pingce.php?id=$1 [L]

Nginx Rewrite 規則:

rewrite ^/(mianshi|xianjing)/$ /zl/index.php?name=$1 last;

rewrite ^/zl/index.php?name=$1 last;

rewrite ^/ ceshi/$ /zl/ceshi.php last;

rewrite ^/(mianshi)_([a-zA-Z]+)/$ /zl/index.php?name=$1_$2 last;

rewrite ^ /pingce([0-9]*)/$ /zl/pingce.php?id=$1 last;

由上述範例可以看出,Apache的Rewrite規則改為Nginx的Rewrite規則,其實很簡單:Apache的RewriteRule指令換成Nginx的rewrite指令,Apache的[L]標記換成Nginx的last標記,中間的內容不變。

如果Apache的Rewrite規則改為Nginx的Rewrite規則後,使用nginx -t指令檢查發現nginx.conf設定檔有語法錯誤,那麼可以嘗試為條件加上引號。例如一下的Nginx Rewrite規則會報文法錯誤:

rewrite ^/([0-9]{5}).html$ /x.jsp?id=$1 last;

加上引號就正確了:

rewrite “^/([0-9]{5}).html$” /x.jsp?id=$1 last;

Apache與Nginx的Rewrite規則在URL跳轉時有細微的區別:

Apache Rewrite 規則:

RewriteRule ^/html/tagindex/([a-zA-Z]+)/.*$ /$1/ [R=301,L]

Nginx Rewrite 規則:

rewrite ^/html/tagindex/([a -zA-Z]+)/.*$ http://$host/$1/ permanent;

以上範例中,我們注意到,Nginx Rewrite 規則的置換串中增加了“http://$host”,這是在Nginx中要求的。

另外,Apache與Nginx的Rewrite規則在變數名稱上也有區別,例如:

Apache Rewrite 規則:

RewriteRule ^/user/login/$ /user/login.php?login=1&forward=http://% {HTTP_HOST} [L]

Nginx Rewrite 規則:

rewrite ^/user/login/$ /user/login.php?login=1&forward=http://$host   last;

Apache與Nginx Rewrite 規則的一些功能相同或類似的指令、標記對應關係:

Apache的RewriteCond指令對應Nginx的if指令;
Apache的RewriteRule指令對應Nginx的rewrite指令;
Apache的[R]標記對應Nginx的指令對應Nginx的rewrite指令;
Apache的[R]標記對應Nginx的指令對應Nginx的rewrite指令;
Apache的[R]標記對應Nginx的redirect標記;

P]標記對應Nginx的last標記;

Apache的[R,L]標記對應Nginx的redirect標記;

Apache的[P,L]標記對應Nginx的last標記;

Apache的[PT,L]標記對應Nginx的last標記;

允許指定的網域存取本站,其他網域一律跳到http://www.aaa.com

Apache Rewrite 規則:

RewriteCond %{HTTP_HOST}    ^(.*?).domain. com$

RewriteCond %{HTTP_HOST}    !^qita.domain.com$

RewriteCond %{DOCUMENT_ROOT}/market/%1/index.htm -f

RewriteRule ^/wu/$ /market/%1/index.htm -f
RewriteRule ^/wu/$/market /%1/index. L]

Nginx的if指令不支援嵌套,也不支援AND、OR等多條件匹配,相比於Apache的RewriteCond,顯得麻煩一些,但是,我們可以透過下一頁的Nginx配置寫法來實現這個範例:

Nginx Rewrite 規則:

if ($host ~* ^(.*?).domain.com$) set $var_wupin_city $1;

     set $var_wupin '1′;

     set $var_wupin '1′;

.domain.com$)

    set $var_wupin '0′;


 if (!-f $document_root/market/$var_wupin_city/index.htm)

(!-f $document_root/market/$var_wupin_city/index.htm)

($varifh wu  30007_8; '1′)

    rewrite ^/wu/$ /market/$var_wupin_city/index.htm last;

}

rew

作用域: 

server, location, if作用域: 

server, location, if

This directive changes URI in accordance with the regular expression and the replacement string. Directives are carried out in config of appearance in.更改URI,或修改字串。指令根據設定檔中的順序來執行。

Be aware that the rewrite regex only matches the relative path instead of the absolute URL. If you want to match the hostname, you should use an if condition, like so:

注意重寫式只對錶達路徑相對有效表達式。如果你想配對主機名,你應該使用if語句。

rewrite只是會改寫路徑部分的東東,不會改動用戶的輸入參數,因此這裡的if規則裡面,你無需關心用戶在瀏覽器裡輸入的參數,rewrite後會自動添加的,因此,我們只是加上了一個?號和後面我們想要的一個小小的參數 ***https=1就可以了。

nginx的rewrite規則參考:

  1. ~ 為區分大小寫匹配
  2. ~* 為不區分大小寫匹配
  3. !~和!~*分別為區分大小寫不匹配及不區分大小寫匹配
!~和!~*分別為區分大小寫不匹配及不區分大小寫相符

  1. -f和!-f用來判斷是否存在檔案
  2. -d和!-d用來判斷是否有目錄
  3. -e和!-e用來判斷是否有檔案或目錄
-e和!-e用來判斷是否有檔案或目錄

    -x和!-x用來判斷檔案是否可執行
  1. last 相當於Apache裡的[L]標記,表示完成rewrite,呵呵這應該是最常用的
  2. break 終止匹配, 不再匹配後面的規則
redirect 回傳302臨時重定向網址列會顯示跳轉後的位址

    permanent 回傳301永久重新導向網址列會顯示跳轉後的位址
  1. $content_type
  2. $document_root
  3. $document_uri
  4. $host
  5. $http_user_agent
  6. $http_cookie
  7. $remote_addr
  8. $remote_port
  9. $remote_user
  10. $ request_filename
  11. $request_uri
  12. $query_string
  13. $scheme
  14. $server_protocol
  15. $server_addr
  16. $server_name
  17. QeePHP的例子
  18. if (!-d $request_filename) {
  19. rewrite ^/([a-z-A-Z]+)/([a-z-A-Z]+)/?(.*)$ /index.php?namespace=user&c last;
  20. /?$ /index.php?namespace=user&c last;
  21. break;

多目錄轉成參數

abc.domian.com/sort/2 => abc.domian.com/index.php?act= sort&name=abc&id=2

  1. if ($host ~* (.*).domain.com) {
  2. set $sub_name $1;
  3. rewrite ^/sort/(d+)/$ /index.? act=sort&cid=$sub_name&id=$1 last;
}


目錄對換

/123456/xxxx -> /xxxx?id=123456

  1. ( $2?id=$1 last;
  2. 例如下面設定nginx在使用者使用ie的使用重定向到/nginx-ie目錄下:
if ($http_user_agent ~ MSIE) {


if ($http_user_agent ~ MSIE) {

rew ^( *)$ /nginx-ie/$1 break;

  1. }

目錄自動加上「/」

  1. if (-d $request_filename){
  2. )$ http://$host/$1$2/ permanent;
  3. }

禁止htaccess

  1. location ~/.ht {
  2. deny all。
location ~ ^/(cron|templates)/ {

deny all;

break;

  1. }
  2. -禁止以/data .txt等請求;
location ~ ^/data {

deny all;

    }
  1. 禁止單一目錄
  2. 不能禁止.log.看到
  3. deny all;
}


禁止單一檔案

  1. location ~ /data/sql/data.sql {設定過期時間;
  2. 這裡為favicon.ico為99天,robots.txt為7天並不記錄404錯誤日誌
location ~(favicon.ico) {

log_not_found off
break;

}

  1. location ~(robots.txt) {
  2. log_not_found off;
expires 7d;

期600秒,不記錄存取日誌

  1. location ^~ /html/scripts/loadhead_1.js {
  2. access_log   off;
  3. /opt/lampp/htdocs/webbreak;
}


檔案反盜鏈並設定過期時間

這裡的return 412 為自訂的http狀態碼,預設為403,方便找出正確的盜鏈的請求

    「rewrite ^/ http:// leech.divmy.com/leech.gif;」顯示一張防盜鍊圖片
  1. 「access_log off;」不記錄存取日誌,減輕壓力
  2. 「expires 3d」所有檔案3天的瀏覽器快取
    1. location ~* ^.+.(jpg|jpeg|gif|png|swf|rar|zip|css|js)$ {
    2. valid_referers none blocked *.c1gstudio.com *.c1gstudio.net local 2087. ;
    3. if ($invalid_referer) {
    4. rewrite ^/ http://leech.divmy.com/leech.gif;
    5. return 412;
    6. break;
    7. /c /lampp/htdocs/web;
    8. expires 3d;
    9. break;
    10. }
    11. 只充值固定ip訪問網站,加上密碼
    只充填固定ip訪問網站,並加上密碼

      只充填固定ip訪問網站,並加裝208.97.167.194;
    1. allow   222.33.1.2;
    2. allow   231.152.49.4;
    3. deny _file htpasswd;
    4. 將多層目錄下的檔案轉換成一個文件,增強seo效果
    5. /job-123-456-789.html 指向/job/123/456/789.html
    6. ]
    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 時將不會匹配

    1. rewrite ^/([0-9a-z]+)job$ /area/$1/ last ;
    rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2 last;

      這樣/shanghai 也可以訪問了,但頁面中的相對連結無法使用,
    1. 如./list_1.html真實位址是/area/shanghia/list_1.html會變成/list_1.html,導至無法存取。
    2. 那我加上自動跳轉也是不行咯
    3. (-d $request_filename)它有條件是必需為真實目錄,而我的rewrite不是的,所以沒有效果


    if (-d $request_filename) {

    rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;

    }

    1. 知道原因後就好做了
    2. rewrite ^/([0-9a-z]+)job$ /$1job/ permanent;
    rewrite ^/([0-9a-z]+)job/(.*)$ /area/ $1/$2 last;

      檔案和目錄不存在的時候重定向:
    1. if (!-e $request_filename) {
    proxy_pass http://127.0.0.0.1;網域跳轉

      server
    1. {
    2. listen       80;
    3. server_name  jump.88dgw.com;ep ;
    rewrite ^/ http://www.88dgw.com/;

    access_log  off;

      }
    1. index index.html index.htm index.php;
    2. root  /opt/lampp/htdocs;
    3. if ($host ~ “c1gstudio.net”) {
    4. rewrite ^(.*) http://www. 7oom.com$1/ permanent;
    5. }
    6. 三級網域跳轉

    if ($http_host ~* “^(.*).i.c1gstudio.com$ .*) http://top.88dgw.com$1/;

    break;

    1. }
    2. 網域鏡向
    3. servers
    4. _n; ror.c1gstudio.com ;
    5. index index.html index.htm index.php;
    root  /opt/lampp/htdocs/www;

    rewrite ^/(.*) http://www.divmy.com/$1 last;

    access_log  off;

    1. }
    2. 某某子目錄作鏡向
    location ^~ /zhaopinhui {

    rewrite ^.+div; }

    1. discuz ucenter home (uchome) rewrite
    2. rewrite ^/(space|network)-(.+).html$ /$1.php?rewrite=$2 last;
    3. network).html$ /$1.php last;
    4. rewrite ^/([0-9]+)$ /space.php?uid=$1 last;
    5. discuz 7 rewrite
      1. rewrite ^(.*)/archiver/((fid|tid)-[w-]+.html)$ $1/archiver/index.php?$2 last;
      2. rewrite ^(.*)/forum- ([0-9]+)-([0-9]+).html$ $1/forumdisplay.php?fid=$2&page=$3 last;
      3. rewrite ^(.*)/thread-([0-9 ]+)-([0-9]+)-([0-9]+).html$ $1/viewthread.php?tid=$2&extra=page%3D$4&page=$3 last;
      4. rewrite ^(. *)/profile-(username|uid)-(.+).html$ $1/viewpro.php?$2=$3 last;
      5. rewrite ^(.*)/space-(username|uid)-(.+) .html$ $1/space.php?$2=$3 last;
      6. rewrite ^(.*)/tag-(.+).html$ $1/tag.php?name=$2 last;

      給某某某某某某某某某某某某的版塊單獨配置網域名稱

      1. server_name  bbs.c1gstudio.com news.c1gstudio.com;

      2. location = / {
      3. if ($/m http://news.divmy.com/forum-831-1.html last;
      4. break;
      5. }
      6. }
      discuz ucenter. location ~ .*.php?$

      {

        #fastcgi_pass  unix:/tmp/php-cgi.sock;
      1. fastcgi_pass  127.0.0.1:9000;fastcgi_pass  127.0.0.1:9000;
      2. }
      3. location /ucenter/data/avatar {
      4. log_not_found off;
      5. access_log   off
      6. /big lo avatar_big. gif;
      7. }
      8. location ~ /(.*)_middle.jpg$ {
      9. error_page 404 /ucenter/images/noavatar_middle.gif;
      10. }
      11. .g
      12. error_page 404 /ucenter/images/noavatar_small.gif;
      13. }
      14. expires 300;
      15. break;
      16. }
      17. } .*.php?$
      18. {
      19. #fastcgi_pass  unix:/tmp/php-cgi.sock;
      20. fastcgi_pass  127.0.0.1:9000;
      21. fastcgi_index index.php;
      22. location ~* ^/index.php/
      23. {
      24. rewrite ^/index.php/(.*) /index.php?$1 break;
      25. fastcgi_pass  127.0.0.1:9000;
      26. fast .conf;
      }

        另外這裡還有一個工具可以直接把apache規則轉換成nginx法則
      1. http://www.anilcetin.com/convert-apache-htaccess-to-nginx/
      2. 參考:
      3. http://wiki.nginx.org/NginxChsHttpRewriteModule
      4. http://blog.csdn.net/cnbird2008/archive/2009/08/04/4409620.aspx
      5. com/
      6. 以上就介紹了關於Nginx設定檔及ReWriteUrl那點事~,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn