15 我找不到如何将单个URL映射到单个静态文件的方法。我试过了: location /feeds/seznam/ { alias /path/to/file/feed.xml; } 但这不起作用(在日志中,我看到它会将index.html附加到路径中)。 nginx — 布鲁斯 source 这回答了新的读者 — user21904
15 尝试以下方法: location /feeds/seznam/ { rewrite ^/feeds/seznam/$ /path/to/file/feed.xml; } 参考文献 nginx将虚拟目录重写为文件 — slm source 1 可以,但是/path/to/file.xml必须是URL路径,而不是文件系统路径。 — 2013年 @Bruce-您能举个例子吗? — slm 2 @slm,你要找的alias /your-file-path;- nginx.org/en/docs/http/ngx_http_core_module.html#alias — jobwat