rewrite 重寫php
重寫中用到的指令html
if (條件) {} 設定條件,再進行重寫 nginx
set #設置變量正則表達式
return #返回狀態碼 apache
break #跳出rewrite瀏覽器
rewrite #重寫服務器
If 語法格式ide
If 空格 (條件) {url
重寫模式spa
}
條件又怎麼寫?
答:3種寫法
1: 「=」來判斷相等, 用於字符串比較
2: 「~」 用正則來匹配(此處的正則區分大小寫)
~* 不區分大小寫的正則
3: -f -d -e來判斷是否爲文件,爲目錄,是否存在.
例子:
若是192.168.1.100訪問,則返回狀態403
if ($remote_addr = 192.168.1.100) {
return 403;
}
nginx自帶404:
if ($http_user_agent ~ MSIE) {
rewrite ^.*$ /ie.htm;
break; #(不break會循環重定向)
}
若是是ie瀏覽器訪問,則無論訪問什麼都訪問ie.html文件:
(可是上面會形成n次重定向:ie訪問一次就rewrite一次,而後又訪問又rewrite...)
重寫404:
if (!-e $document_root$fastcgi_script_name) {
rewrite ^.*$ /404.html break;
}
注, 此處還要加break,
以 xx.com/dsafsd.html這個不存在頁面爲例,
咱們觀察訪問日誌, 日誌中顯示的訪問路徑,依然是GET /dsafsd.html HTTP/1.1
提示: 服務器內部的rewrite和302跳轉不同.
跳轉的話URL都變了,變成從新http請求404.html, 而內部rewrite, 上下文沒變,
就是說$fastcgi_script_name仍然是 dsafsd.html,所以 會循環重定向.
set 是設置變量用的, 能夠用來達到多條件判斷時做標誌用.
達到apache下的 rewrite_condition的效果
以下: 判斷IE並重寫,且不用break; 咱們用set變量來達到目的(這樣作意義不大)
if ($http_user_agent ~* msie) { #(~* msie:不區分大小寫匹配msie)
set $isie 1;
}
if ($fastcgi_script_name = ie.html) {
set $isie 0;
}
if ($isie 1) {
rewrite ^.*$ ie.html;
}
(若是訪問者是ie,且訪問的不是ie.html,則重寫)
Rewrite語法
Rewrite 正則表達式 定向後的位置 模式
Goods-3.html ---->Goods.php?goods_id=3
goods-([\d]+)\.html ---> goods.php?goods_id =$1
location /ecshop {
index index.php;
rewrite goods-([\d]+)\.html$ /ecshop/goods.php?id=$1;
rewrite article-([\d]+)\.html$ /ecshop/article.php?id=$1;
rewrite category-(\d+)-b(\d+)\.html /ecshop/category.php?id=$1&brand=$2;
rewrite category-(\d+)-b(\d+)-min(\d+)-max(\d+)-attr([\d\.]+)\.html /ecshop/category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5;
rewrite category-(\d+)-b(\d+)-min(\d+)-max(\d+)-attr([\d+\.])-(\d+)-([^-]+)-([^-]+)\.html /ecshop/category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5&page=$6&sort=$7&order=$8;
}
注意:用url重寫時, 正則裏若是有」{}」,正則要用雙引號包起來