标签:
http{
server{
}
}
location /some/path/ { root html/ }
或
server { ... rewrite ^(/download/.*)/media/(.*)\..*$ $1/mp3/$2.mp3 last; rewrite ^(/download/.*)/audio/(.*)\..*$ $1/mp3/$2.ra last; return 403; ... }
location / { proxy_pass http://www.example.com; }
或
location /wrong/url { return 404; } 或 location /permanently/moved/url { return 301 http://www.example.com/moved/here; }
error_page 404 /404.html;
标签:
原文地址:http://www.cnblogs.com/meizhouxiang/p/4567893.html