在網站建設中須要網頁重定向的狀況不少:如網頁目錄結構變更,網頁重命名、網頁的擴展名改變、網站域名改變等。若是不作重定向,用戶的收藏和搜索引擎數據庫中的舊地址只能讓訪客獲得一個404錯誤信息頁面,訪問流量白白喪失。不只如此,以前該頁面的一切積累(好比PR值)就都白費了。php
301重定向不只能使頁面實現自動跳轉,對於搜索引擎來講,也可能能夠傳遞PR值。css
nginx重定向規則詳細介紹html
http://www.jefflei.com/post/1015.html前端
rewrite命令
nginx的rewrite至關於apache的rewriterule(大多數狀況下能夠把原有apache的rewrite規則加上引號就能夠直接使用),它能夠用在server,location 和IF條件判斷塊中,命令格式以下:
rewrite 正則表達式 替換目標 flag標記
flag標記能夠用如下幾種格式:
last – 基本上都用這個Flag。
break – 停止Rewirte,不在繼續匹配
redirect – 返回臨時重定向的HTTP狀態302
permanent – 返回永久重定向的HTTP狀態301
例以下面這段設定nginx將某個目錄下面的文件重定向到另外一個目錄,$2對應第二個括號(.*)中對應的字符串:
location /download/ {
rewrite ^(/download/.*)/m/(.*)\..*$ $1/nginx-rewrite/$2.gz break;
}nginx
nginx重定向的IF條件判斷
在server和location兩種狀況下可使用nginx的IF條件判斷,條件能夠爲如下幾種:
正則表達式web
如:
匹配判斷
~ 爲區分大小寫匹配; !~爲區分大小寫不匹配
~* 爲不區分大小寫匹配;!~爲不區分大小寫不匹配
例以下面設定nginx在用戶使用ie的使用重定向到/nginx-ie目錄下:
if ($http_user_agent ~ MSIE) {
rewrite ^(.*)$ /nginx-ie/$1 break;
}
文件和目錄判斷
-f和!-f判斷是否存在文件
-d和!-d判斷是否存在目錄
-e和!-e判斷是否存在文件或目錄
-x和!-x判斷文件是否可執行
例以下面設定nginx在文件和目錄不存在的時候重定向:
if (!-e $request_filename) {
proxy_pass http://127.0.0.1/;
}正則表達式
return
返回http代碼,例如設置nginx防盜鏈:
location ~* \.(gif|jpg|png|swf|flv)$ {
valid_referers none blocked http://www.jefflei.com/ http://www.leizhenfang.com/;
if ($invalid_referer) {
return 404;
}
}sql
set
設置nginx變量數據庫
301重定向方法apache
進行了301重定向,把www .jefflei.com和jefflei.com合併,並把以前的域名也一併合併. 有兩種實現方法,第一種方法是判斷nginx核心變量host(老版本是http_host):server {
server_name www.jefflei.com jefflei.com ;
if ($host != 'www.jefflei.com' ) {
rewrite ^/(.*)$ http://www.jefflei.com/$1 permanent;
}
...
}
第二種方法:server {
server_name jefflei.com;
rewrite ^/(.*) http://www.jefflei.com/$1 permanent;
}
測試了
第一種方法ok,這兩種方法中, permanent是關鍵,詳細說明見nginx重定向規則說明。
last – 基本上都用這個Flag。
break – 停止Rewirte,不在繼續匹配
redirect – 返回臨時重定向的HTTP狀態302
permanent – 返回永久重定向的HTTP狀態301
好了,如今能夠檢查結果,這裏能夠看返回的HTTP頭信息:
http://www.seoconsultants.com/tools/headers.asp
第二種方法沒有測試成功...
測試是否認向成功
http://qinfy.net/301-redirect-for-nginx/
輸入指令~
/usr/local/nginx/sbin/nginx -t
提示:
the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
configuration file /usr/local/nginx/conf/nginx.conf test is successful
測試成功~ 重啓nginx~ 輸入指令~
/usr/local/nginx/sbin/nginx -s reload
重啓以後測試一下~是否成功設定完成! 輸入指令~
curl -I imcat.tk
會輸出:
HTTP/1.1 301 Moved Permanently
Server: nginx/0.7.65
Date: Tue, 03 Aug 2010 01:12:37 GMT
Content-Type: text/html
Content-Length: 185
Connection: keep-alive
Location: http://qinfy.net/
nginx rewrite 僞靜態配置參數詳細說明(轉)
http://hi.baidu.com/hx10/blog/item/942a0ad784f3ffd0a144df94.html
nginx rewrite 僞靜態配置參數和使用例子 附正則使用說明
正則表達式匹配,其中:
* ~ 爲區分大小寫匹配
* ~* 爲不區分大小寫匹配
* !~和!~*分別爲區分大小寫不匹配及不區分大小寫不匹配
文件及目錄匹配,其中:
* -f和!-f用來判斷是否存在文件
* -d和!-d用來判斷是否存在目錄
* -e和!-e用來判斷是否存在文件或目錄
* -x和!-x用來判斷文件是否可執行
flag標記有:
* last 至關於Apache裏的[L]標記,表示完成rewrite
* break 終止匹配, 再也不匹配後面的規則
* redirect 返回302臨時重定向 地址欄會顯示跳轉後的地址
* permanent 返回301永久重定向 地址欄會顯示跳轉後的地址
一些可用的全局變量有,能夠用作條件判斷(待補全)
$args
$content_length
$content_type
$document_root
$document_uri
$host
$http_user_agent
$http_cookie
$limit_rate
$request_body_file
$request_method
$remote_addr
$remote_port
$remote_user
$request_filename
$request_uri
$query_string
$scheme
$server_protocol
$server_addr
$server_name
$server_port
$uri
結合QeePHP的例子
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 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;
將根目錄下某個文件夾指向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\%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;
給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;
}
摘錄1:網絡
所謂301永久重定向(或叫301轉向,301跳轉),是指當用戶或搜索引擎向網站服務器發出瀏覽請求時,服務器返回的HTTP數據流中頭信息(header)中的狀態碼的一種,表示本網頁永久性轉移到另外一個地址。
301永久重定向有何做用?在哪些狀況下適用?
從301永久重定向的定義能夠看出,它是一種狀態碼,會向搜索引擎或瀏覽器發出信息:本網頁的地址已經永久改變了。並會把新的地址傳達過去。而相應的就是:咱們輸入網址A訪問,顯示出來的是轉向後的網址B,轉向過程極短以致沒法察覺。因此,301永久重定向對於訪客來講,做用就是將他要訪問的而實際上已不存在的網址轉到另外一個網址,避免出現「此網頁沒法顯示」之類的錯誤;對於搜索引擎優化|SEO來講,給搜索引擎一個友好的信息,告訴它此頁面已永久重定向,避免搜索引擎找不到頁面。這對於網站的SEO是很重要的,由於301永久重定向對SEO無任何很差的影響!並且網頁A的關鍵詞排名和PR級別都會傳達給網頁B!
1、當出於須要刪除網站中的某些目錄時,能夠經過301永久重定向將此目錄重定向到網站首頁。
2、網站更換域名時,經過301永久重定向將舊域名重定向至新域名,挽回流量損失和SEO。
3、想要多個域名同時指向同一網站時,經過301永久重定向能夠實現。
通常的虛擬主機後臺提供將test.cn和www.test.cn等多個域名綁定到同一網站的功能,但這樣對收錄可能有影響,而用301永久重定向就沒有這樣的擔心。
4、實現網址規範化。
有如下4個網址:
http://test.cn
http://www.test.cn
http://test.cn/index.html
http://www.test.cn/index.html
查詢上面4個網址的PR值,或用site:test.cn查看網站首頁,若是結果一致,說明網站沒有規範化問題;若是不一致,代表有規範化問題。出現此問題時,能夠將上面4個網址經過301永久重定向指向同一個網址http://www.test.cn,解決了。
如何實現301永久重定向?
1、經過代碼實現301永久重定向。
HTML網頁沒法實現301永久重定向。由於HTML文件一被讀取,就已經返回表示一切正常的200狀態碼了。
好比,你要刪除某個目錄A,想實現訪問http://www.test.cn/A/時跳轉到http://www.test.cnheader(」HTTP/1.1 301 Moved Permanently」);
header(」Location:http://www.test.cn」);
exit();
?>
訪問http://www.test.cn/A/其實就是訪問http://www.test.cn/A/index.php,就會自動跳轉到http://www.test.cn
有個技巧:若是http://www.test.cn 網站目錄下同時存在index.html和index.asp,設置文檔優先級html>asp時,輸入http://www.test.cn訪問到的是http://www.test.cn/index.html;設置文檔優先級asp>html時,訪問的是http://www.test.cn/index.asp.
2、虛擬主機301永久重定向
若是你的網站空間是使用虛擬主機或合租空間,沒法對WEB服務器(IIS、Apache)進行設置,能夠利用子目錄綁定實現301永久重定向。首先創建子目錄A,而後把你要進行重定向的域名A綁到這個目錄,在這個子目錄裏面創建一個index.php文件,寫入上面介紹的代碼。那麼訪問子目錄A下的index.php也即訪問域名A,就會跳轉到綁定在其餘子目錄上的域名B。
3、Apache實現301永久重定向。
Apache中的分佈式配置文件「.htaccess」提供了針對每一個目錄改變配置的方法,即在一個特定的目錄中放置一個包含指令的文件,其中的指令做用於此目錄及其全部子目錄。好比,在目錄A下放.htaccess,寫入代碼:
redirect 301 /A http://www.test.cn 或
redirect permanent /A http://www.test.cn
訪問http://www.test.cn/A/及其子目錄時便可重定向到http://www.test.cn。若將整個網站或域名重定向到另外一網站或域名,則可寫入redirect 301 / http://www.test.cn,將.htaccess放在根目錄便可。
若是要實現「批量重定向」,好比,把http://test.cn/a.html重定向到http://www.test.cn/a.html,把http://test.cn/b.html重定向到http://www.test.cn/b.html。。。等等,即把http://test.cn下的全部文件重定向到http://www.test.cn下的同名文件,則要用到mod_rewrite模塊。在.htaccess中寫入:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^test.cn [NC]
RewriteRule ^(.*)$ http://www.test.cn/$1 [L,R=301]
便可。
或將綁定的其餘多個域名重定向到主域名:
RewriteEngine on
RewriteCond % ^test.cn$ [OR]
RewriteCond % ^bbs.test.cn$ [OR]
RewriteRule ^(.*)$ http://www.test.cn/ [R=301,L]
本篇文章來源於 - http://www.itokit.com - web開發技術 原文地址是:http://www.itokit.com/bbs/redirect.php?tid=11670&goto=lastpost
摘錄2:網絡
首先Apache的Rewite規則差異不是很大,可是Nginx的Rewrite規則比Apache的簡單靈活多了
Nginx能夠用if進行條件匹配,語法規則相似C
if ($http_user_agent ~ MSIE) {
rewrite ^(.*)$ /msie/$1 break;
}
Rewrite的Flags
last - 基本上都用這個Flag。
break - 停止Rewirte,不在繼續匹配
redirect - 返回臨時重定向的HTTP狀態302
permanent - 返回永久重定向的HTTP狀態301
Wordpress的重定向規則:
if (!-e $request_filename) {
rewrite ^/(index|atom|rsd)\.xml$ http://feed.shunz.net last;
rewrite ^([_0-9a-zA-Z-]+)?(/wp-.*) $2 last;
rewrite ^([_0-9a-zA-Z-]+)?(/.*\.php)$ $2 last;
rewrite ^ /index.php last;
}
如下爲Discuz完整的Rewrite for Nginx規則
if (!-f $request_filename) {
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;
}
正則正則表達式匹配註解
~ 爲區分大小寫匹配
~* 爲不區分大小寫匹配
!~和!~*分別爲區分大小寫不匹配及不區分大小寫不匹配
二、文件及目錄匹配,其中:
-f和!-f用來判斷是否存在文件
-d和!-d用來判斷是否存在目錄
-e和!-e用來判斷是否存在文件或目錄
-x和!-x用來判斷文件是否可執行
摘錄3:網絡
靜態地址重定向到帶參數的動態地址
rewrite "^(.*)/service/(.*)\.html$" $1/service.php?sid=$2 permanent;
帶參數的動態地址重定向到靜態地址
if ($query_string ~* id=(.*)) {
set $id $1;
rewrite "^(.*)/article.asp$" $1/article/$id.htm last;
}
泛域名解析
server_name www.w3cgroup.com *.w3cgroup.com;
server_name_in_redirect off;
#設置默認root
set $rootdir /usr/local/nginx/html/w3cgroup/;
#匹配三級域名
if ($host ~* ^([^\.]+)\.([^\.]+)\.([^\.]+)\.([^\.]+)$) {
set $rootdir /usr/local/nginx/html/w3cgroup/$2/$1;
#三級域名中有訪問指定的目錄則重定向到相應的二級域名下
rewrite "^.+upload/?(.*)$" http://upload.w3cgroup.com/$1 permanent;
rewrite "^.+ijc/?(.*)$" http://ijc.w3cgroup.com/$1 permanent;
break;
}
#匹配二級域名
if ($host ~* ^([^\.]+)\.([^\.]+)\.([^\.]+)$) {
set $rs1 $1;
}
#設置www時root
if ($rs1 ~* ^www$) {
set $rootdir /usr/local/nginx/html/platform_ig/;
#二級域名中有訪問指定的目錄則重定向到相應的二級域名下,注意,這裏要使用last
rewrite "^.+upload/?(.*)$" upload/$1 last;
rewrite "^.+ijc/?(.*)$" ijc/$1 last;
break;
}
#設置非www二級域名時root
if ($rs1 !~* ^www$) {
set $rootdir /usr/local/nginx/html/w3cgroup/$rs1;
#二級域名中有訪問指定的目錄則重定向到相應的二級域名下
rewrite "^.+upload/?(.*)$" http://upload.w3cgroup.com/$1 permanent;
rewrite "^.+ijc/?(.*)$" http://ijc.w3cgroup.com/$1 permanent;
break;
}
#應用root
root $rootdir;
index index.php index.html;
error_page 404 http://$host/;
注意:if () {} 之間須要空格,不然Nginx.conf會報unknow directive 錯誤!
參考:
Nginx Rewrite Flags
* last 至關於Apache裏的[L]標記,表示完成rewrite
* break 終止匹配, 再也不匹配後面的規則
* redirect 返回302臨時重定向
* permanent 返回301永久重定向
Nginx正則表達式匹配
* ~ 爲區分大小寫匹配
* ~* 爲不區分大小寫匹配
* !~和!~*分別爲區分大小寫不匹配及不區分大小寫不匹配
Nginx文件及目錄匹配
* -f和!-f用來判斷是否存在文件
* -d和!-d用來判斷是否存在目錄
* -e和!-e用來判斷是否存在文件或目錄
* -x和!-x用來判斷文件是否可執行
Nginx全局變量
$args
$content_length
$content_type
$document_root
$document_uri
$host
$http_user_agent
$http_cookie
$limit_rate
$request_body_file
$request_method
$remote_addr
$remote_port
$remote_user
$request_filename
$request_uri
$query_string
$scheme
$server_protocol
$server_addr
$server_name
$server_port
$uri
Nginx的重定向用到了Nginx的HttpRewriteModule,下面簡單解釋如下如何使用的方法:
rewrite命令
nginx的rewrite至關於apache的rewriterule(大多數狀況下能夠把原有apache的rewrite規則加上引號就能夠直接使用),它能夠用在server,location 和IF條件判斷塊中,命令格式以下:
rewrite 正則表達式 替換目標 flag標記
flag標記能夠用如下幾種格式:
last – 基本上都用這個Flag。
break – 停止Rewirte,不在繼續匹配
redirect – 返回臨時重定向的HTTP狀態302
permanent – 返回永久重定向的HTTP狀態301
例以下面這段設定nginx將某個目錄下面的文件重定向到另外一個目錄,$2對應第二個括號(.*)中對應的字符串:
location /download/ {
rewrite ^(/download/.*)/m/(.*)\..*$ $1/nginx-rewrite/$2.gz break;
}
nginx重定向的IF條件判斷
在server和location兩種狀況下可使用nginx的IF條件判斷,條件能夠爲如下幾種:
正則表達式
如:
匹配判斷
~ 爲區分大小寫匹配; !~爲區分大小寫不匹配
~* 爲不區分大小寫匹配;!~爲不區分大小寫不匹配
例以下面設定nginx在用戶使用ie的使用重定向到/nginx-ie目錄下:
if ($http_user_agent ~ MSIE) {
rewrite ^(.*)$ /nginx-ie/$1 break;
}
文件和目錄判斷
-f和!-f判斷是否存在文件
-d和!-d判斷是否存在目錄
-e和!-e判斷是否存在文件或目錄
-x和!-x判斷文件是否可執行
例以下面設定nginx在文件和目錄不存在的時候重定向:
if (!-e $request_filename) {
proxy_pass http://127.0.0.1;
}
return
返回http代碼,例如設置nginx防盜鏈:
location ~* \.(gif|jpg|png|swf|flv)$ {
valid_referers none blocked www.jefflei.com www.leizhenfang.com;
if ($invalid_referer) {
return 404;
}
}
set
設置nginx變量
摘錄5:NGINX 502錯誤排查
NGINX 502 Bad Gateway錯誤是FastCGI有問題,形成NGINX 502錯誤的可能性比較多。將網上找到的一些和502 Bad Gateway錯誤有關的問題和排查方法列一下,先從FastCGI配置入手:
1.查看FastCGI進程是否已經啓動
NGINX 502錯誤的含義是sock、端口沒被監聽形成的。咱們先檢查fastcgi是否在運行
2.檢查系統Fastcgi進程運行狀況
除了第一種狀況,fastcgi進程數不夠用、php執行時間長、或者是php-cgi進程死掉也可能形成nginx的502錯誤
運行如下命令判斷是否接近FastCGI進程,若是fastcgi進程數接近配置文件中設置的數值,代表worker進程數設置太少netstat -anpo | grep "php-cgi" | wc -l
3.FastCGI執行時間過長
根據實際狀況調高如下參數值
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
4.頭部太大
nginx和apache同樣,有前端緩衝限制,能夠調整緩衝參數
fastcgi_buffer_size 32k;
fastcgi_buffers 8 32k;
若是你使用的是nginx的負載均衡Proxying,調整
proxy_buffer_size 16k;
proxy_buffers 4 16k;
參見:http://www.ruby-forum.com/topic/169040
5.https轉發配置錯誤
正確的配置方法server_name www.mydomain.com;
location /myproj/repos {
set $fixed_destination $http_destination;
if ( $http_destination ~* ^https(.*)$ )
{
set $fixed_destination http$1;
}
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Destination $fixed_destination;
proxy_pass http://subversion_hosts;
}
參見:http://www.ruby-forum.com/topic/169040
固然,還要看你後端用的是哪一種類型的FastCGI,我用過的有php-fpm,流量約爲單臺機器40萬PV(動態頁面), 如今基本上沒有碰到502。