1、正則表達式匹配
~
爲區分大小寫匹配~*
爲不區分大小寫匹配!~
和!~*
分別爲區分大小寫不匹配及不區分大小寫不匹配
2、文件及目錄匹配
-
-f
和!-f
用來判斷是否存在文件php -
-d
和!-d
用來判斷是否存在目錄css -
-e
和!-e
用來判斷是否存在文件或目錄html -
-x
和!-x
用來判斷文件是否可執行前端
三.rewrite指令的最後一項參數爲flag標記,flag標記有
last
至關於apache
裏面的[L]標記,表示rewrite
。break
本條規則匹配完成後,終止匹配,再也不匹配後面的規則。redirect
返回302臨時重定向,瀏覽器地址會顯示跳轉後的URL地址。permanent
返回301永久重定向,瀏覽器地址會顯示跳轉後的URL地址。
使用 last
和 break
實現URI重寫,瀏覽器地址欄不變。linux
並且二者有細微差異,使用alias指令
必須用 last
標記;使用proxy_pass指令
時,須要使用break
標記。Last標記在本條rewrite規則執行完畢後,會對其所在server{......}標籤從新發起請求,而break標記則在本條規則匹配完成後,終止匹配。nginx
例如:若是咱們將相似URL/photo/123456
重定向到 /path/to/photo/12/1234/123456.png
web
rewrite "/photo/([0-9]{2})([0-9]{2})([0-9]{2})" rewrite "/path/to/photo/$1/$1$2/$1$2$3.png" ;
4、NginxRewrite
規則相關指令
一、break指令正則表達式
使用環境:server
、location
、if
sql
該指令的做用是完成當前的規則集,再也不處理rewrite指令。apache
二、if 指令
使用環境:server
、location
該指令用於檢查一個條件是否符合,若是條件符合,則執行大括號內的語句。If指令不支持嵌套,不支持多個條件&&和||處理。
三、return指令
語法:returncode
使用環境:server
、location
、if
該指令用於結束規則的執行並返回狀態碼給客戶端。
示例:若是訪問的URL以".sh"或".bash"結尾,則返回403狀態碼
location ~ .*\.(sh|bash)?$ { return 403; }
四、rewrite 指令
語法:rewriteregex replacement flag
使用環境:server
、location
、if
該指令根據表達式來重定向URI,或者修改字符串。指令根據配置文件中的順序來執行。注意重寫表達式只對相對路徑有效。若是你想配對主機名,你應該使用if語句,示例以下:
if( $host ~* www\.(.*) ) { set $host_without_www $1; rewrite ^(.*)$ http://$host_without_www$1permanent; }
五、Set指令
語法:setvariable value ; 默認值:none 使用環境:server
、location
、if
該指令用於定義一個變量,並給變量賦值。變量的值能夠爲文本、變量以及文本變量的聯合。
set$varname "hello world";
六、Uninitialized_variable_warn指令
語法:uninitialized_variable_warnon|off
使用環境:http
、server
、location
、if
該指令用於開啓和關閉未初始化變量的警告信息,默認值爲開啓。
五.Nginx的Rewrite規則編寫實例
一、當訪問的文件和目錄不存在時,重定向到某個html文件
if( !-e $request_filename ) { rewrite ^/(.*)$ index.htmllast; }
二、目錄對換 /123456/xxxx ====> /xxxx?id=123456
rewrite ^/(\d+)/(.+)/ /$2?id=$1 last;
三、若是客戶端使用的是IE瀏覽器,則重定向到/ie目錄下
if( $http_user_agent ~ MSIE) { rewrite ^(.*)$ /ie/$1 break; }
四、禁止訪問多個目錄
location ~ ^/(cron|templates)/ { deny all; break; }
五、禁止訪問以/data開頭的文件
location ~ ^/data { deny all; }
六、禁止訪問以.sh,.flv,.mp3爲文件後綴名的文件
location ~ .*\.(sh|flv|mp3)$ { return 403; }
七、設置某些類型文件的瀏覽器緩存時間
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)$ { expires 1h; }
八、給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; }
十、文件反盜鏈並設置過時時間
這裏的return412 爲自定義的http狀態碼,默認爲403,方便找出正確的盜鏈的請求
rewrite ^/ http: //img.linuxidc.net/leech.gif;//顯示一張防盜鏈圖片 access_log off; //不記錄訪問日誌,減輕壓力 expires 3d //全部文件3天的瀏覽器緩存 location ~*^.+\.(jpg|jpeg|gif|png|swf|rar|zip|css|js)$ { valid_referers none blocked *.linuxidc.com*.linuxidc.net localhost 208.97.167.194; if ($invalid_referer) { rewrite ^/ http://img.linuxidc.net/leech.gif; return 412; break; } access_log off; root /opt/lampp/htdocs/web; expires 3d; break; }
十一、只容許固定ip訪問網站,並加上密碼
root /opt/htdocs/www; allow 208.97.167.194; allow 222.33.1.2; allow 231.152.49.4; 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;
1三、文件和目錄不存在的時候重定向:
if (!-e $request_filename) { proxy_pass http://127.0.0.1; }
1四、將根目錄下某個文件夾指向2級目錄
如/shanghaijob/ 指向 /area/shanghai/ 若是你將last改爲permanent,那麼瀏覽器地址欄顯是/location/shanghai/ rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2last; 上面例子有個問題是訪問/shanghai時將不會匹配 rewrite ^/([0-9a-z]+)job$ /area/$1/ last; rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2last; 這樣/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/$2last;
1五、域名跳轉
server{ listen 80; server_name jump.linuxidc.com; index index.html index.htm index.php; root /opt/lampp/htdocs/www; rewrite ^/ http://www.linuxidc.com/; access_log off; }
1六、多域名轉向
server_name www.linuxidc.comwww.linuxidc.net; index index.html index.htm index.php; root /opt/lampp/htdocs; if ($host ~ "linuxidc\.net") { rewrite ^(.*) http://www.linuxidc.com$1permanent; }
6、nginx全局變量
arg_PARAMETER #這個變量包含GET請求中,若是有變量PARAMETER時的值。 args #這個變量等於請求行中(GET請求)的參數,如:foo=123&bar=blahblah; binary_remote_addr #二進制的客戶地址。 body_bytes_sent #響應時送出的body字節數數量。即便鏈接中斷,這個數據也是精確的。 content_length #請求頭中的Content-length字段。 content_type #請求頭中的Content-Type字段。 cookie_COOKIE #cookie COOKIE變量的值 document_root #當前請求在root指令中指定的值。 document_uri #與uri相同。 host #請求主機頭字段,不然爲服務器名稱。 hostname #Set to themachine’s hostname as returned by gethostname http_HEADER is_args #若是有args參數,這個變量等於」?」,不然等於」",空值。 http_user_agent #客戶端agent信息 http_cookie #客戶端cookie信息 limit_rate #這個變量能夠限制鏈接速率。 query_string #與args相同。 request_body_file #客戶端請求主體信息的臨時文件名。 request_method #客戶端請求的動做,一般爲GET或POST。 remote_addr #客戶端的IP地址。 remote_port #客戶端的端口。 remote_user #已經通過Auth Basic Module驗證的用戶名。 request_completion #若是請求結束,設置爲OK. 當請求未結束或若是該請求不是請求鏈串的最後一個時,爲空(Empty)。 request_method #GET或POST request_filename #當前請求的文件路徑,由root或alias指令與URI請求生成。 request_uri #包含請求參數的原始URI,不包含主機名,如:」/foo/bar.php?arg=baz」。不能修改。 scheme #HTTP方法(如http,https)。 server_protocol #請求使用的協議,一般是HTTP/1.0或HTTP/1.1。 server_addr #服務器地址,在完成一次系統調用後能夠肯定這個值。 server_name #服務器名稱。 server_port #請求到達服務器的端口號。
#### 7、Apache和Nginx規則的對應關係
Apache的RewriteCond對應Nginx的if Apache的RewriteRule對應Nginx的rewrite Apache的[R]對應Nginx的redirect Apache的[P]對應Nginx的last Apache的[R,L]對應Nginx的redirect Apache的[P,L]對應Nginx的last Apache的[PT,L]對應Nginx的last
例如:容許指定的域名訪問本站,其餘的域名一概轉向www.linuxidc.net
Apache: RewriteCond %{HTTP_HOST} !^(.*?)\.aaa\.com$[NC] RewriteCond %{HTTP_HOST} !^localhost$ RewriteCond %{HTTP_HOST}!^192\.168\.0\.(.*?)$ RewriteRule ^/(.*)$ http://www.linuxidc.net[R,L]
Nginx過濾示例:
if( $host ~* ^(.*)\.aaa\.com$ ) { set $allowHost ‘1’; } if( $host ~* ^localhost ) { set $allowHost ‘1’; } if( $host ~* ^192\.168\.1\.(.*?)$ ) { set $allowHost ‘1’; } if( $allowHost !~ ‘1’ ) { rewrite ^/(.*)$ http://www.linuxidc.netredirect ; }
總結
後端開發是一個最接近全棧的一個職業,前端不夠用後端頂上寫頁面JS,沒有運維沒關係後端來維護服務器,總之一個好的後端就是能面面俱到。