0
nginx.confNginx的位置設置
...
location ~ ^/file/ {
root /ProjectData/b2b;
add_header Access-Control-Allow-Origin *;
}
文件組織
ProjectData
b2b
img
a.png
網址:http://localhost:8008/file/img/a.png
如何設置nginx.conf,使我沒有改變我的文件組織網址的工作?
使用別名代替root –
工作了,謝謝。 – user1434702