系统相关
首页 > 系统相关> > 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后面,这个在配置的时候要注意

 

标签:iframeTest,iframeChild,代理,1.18,问题,nginx,html,location
来源: https://www.cnblogs.com/llcdbk/p/15248733.html