I encountered a need to point all requests from /html/*
to /index.html
, but the redirection function cannot be used
How to implement this in the configuration file? thank you all
淡淡烟草味2017-05-16 17:25:28
This should be enough
location /html/ {
proxy_pass http://127.0.0.1/index.html;
}
Maybe 127.0.0.1 needs to be adjusted according to your actual situation.