我需要将 url 重定向到位于文件系统上的 html 文件。这是我迄今为止尝试过的:
location /this/some/url {
alias /path/to/the/file.html
}
当我运行这个重定向工作,但浏览器尝试下载 html 文件。相反,我希望它在浏览器中呈现 html 页面。
我需要将 url 重定向到位于文件系统上的 html 文件。这是我迄今为止尝试过的:
location /this/some/url {
alias /path/to/the/file.html
}
当我运行这个重定向工作,但浏览器尝试下载 html 文件。相反,我希望它在浏览器中呈现 html 页面。
请阅读别名:https ://nginx.ru/en/docs/http/ngx_http_core_module.html#alias
关于索引文件:https ://nginx.ru/en/docs/http/ngx_http_index_module.html
一切都变得清晰起来。