我用nginx在ubunru上分期付款,喜欢重定向。
https://chat.myserver.tdl/privacy-policy到/a/文件夹/outside/webroot/index.html
在这个用法中适用哪种重定向规则?
发布于 2018-12-29 19:53:18
我想,当您访问index.html时,您需要为/privacy-policy服务吗?如果是这样,请使用别名指令:
location = /privacy-policy {
alias /a/folder/outside/webroot/index.html;
}顺便说一下,如果你真的需要重定向:
location = /privacy-policy {
return 301 /a/folder/outside/webroot/index.html;
}https://webmasters.stackexchange.com/questions/119927
复制相似问题