server {
if (!-e $request_finame) {
rewrite ^/(.*) /index.php? last;
}
# or
location / {
if (!-e $request_finame) {
rewrite ^/(.*) /index.php? last;
}
}
}
其實我想問下,兩個重寫規則是一樣的。
但寫在location / 裡面,直接在server下面寫。有什麼區別。
如果寫在外面,www.example.com/packages/xxx.apk 這樣是下載不了的。
如果在裡面,www.example.com/packages/xxx.apk,只要path存在,是能下載的。
我沒能知道原因。請好心人解惑下。謝謝
在一個文章中看到的。
Nginx Rewrite研究筆記