web-nginx configuration problem
PHP中文网
PHP中文网 2017-05-16 17:23:28
0
1
455

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中文网

认证高级PHP讲师

reply all(1)
淡淡烟草味

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.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!