我无法find如何将单个URL映射到单个静态文件。 我试过了:
location /feeds/seznam/ { alias /path/to/file/feed.xml; }
但这不起作用(在日志中我看到它将index.html附加到path)。
试试这个:
location /feeds/seznam/ { rewrite ^/feeds/seznam/$ /path/to/file/feed.xml; }