I encountered a need to point all requests from /html/* to /index.html, but the redirection function cannot be used
/html/*
/index.html
How to implement this in the configuration file? thank you all
认证高级PHP讲师
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.
This should be enough
Maybe 127.0.0.1 needs to be adjusted according to your actual situation.