Nginx教程

nginx代理出现的问题

本文主要是介绍nginx代理出现的问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

之前配置这么写的:

location ~/test/iframeTest {
            root   D:/software/nginx-1.18.0/nginx-1.18.0/html/iframeTest;
            index  iframeChild.html;
        }

因为

iframeChild.html在
iframeTest目录下

后面发现这么调用不通,原因在于读取路径的时候最后会是这样的路径:
 D:/software/nginx-1.18.0/nginx-1.18.0/html/iframeTest/test/iframeTest

所以后面改成了

        location ~/iframeTest {
            root   D:/software/nginx-1.18.0/nginx-1.18.0/html;
            index  iframeChild.html;
        }

这样的路径,访问正常,才知道location后面的路径会自动拼接到root后面,这个在配置的时候要注意

 
这篇关于nginx代理出现的问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!