Home  >  Q&A  >  body text

web-nginx configuration problem

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

PHP中文网PHP中文网2713 days ago461

reply all(1)I'll reply

  • 淡淡烟草味

    淡淡烟草味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.

    reply
    0
  • Cancelreply