这应该很容易做到,但我在墙上撞到我的头.如果我收到www.mysite.com/mypath的请求,我想提供www.mysite.com/myotherpath/thisfile.html的内容.如何使用Nginx配置执行此操作.
最佳答案
在适当的位置块中使用重写指令.例如,您有基本位置来处理所有请求
原文链接:https://www.f2er.com/nginx/435015.htmllocation / {
/*your rules here*/
}
您将需要添加另一个块,这将用于处理特定路径
location /mypath {
rewrite ^/mypath$/real/path/to/file/thisfile.html;
}
此外,对于您的服务器在该块中认为thisfile.html是默认的,您可以使用try thisfile.html指令
官方页面Official Nginx RewriteModule page上都有很好的解释