Nginx 맵 프로젝트 외 정적 자원 의 인 스 턴 스
1518 단어 경험 기교
실례 1
필요: 요청 / upload / images / bird. jpg, 항목 외 E: / raid / www. my. com / uploads / images / bird. jpg 를 되 돌려 줍 니 다.
방법:
location /upload/images {
root E:/www.my.com/raid/;
}
실례 2
필요: 요청 / upload - images / bird. jpg, 항목 외 E: / raid / www. my. com / uploads / images / bird. jpg 를 되 돌려 줍 니 다. *이번 파일 자원 경로 에는 요청 한 경로 가 포함 되 어 있 지 않 습 니 다.
방법:
# , location /
location / {
rewrite '^/upload-images/(.*).jpg$' /uploads/images/$1.jpg;
}
혹은
# location /
location /upload-images {
rewrite '^/upload-images/(.*).jpg$' /uploads/images/$1.jpg;
}
주의 하 다.
rewrite '/upload-images/' /uploads/images/;
로 쓰 면 403 을 보고 할 것 이다.alias /upload/images/;
로 바 꿀 수 없다.