当前位置:Gxlcms > PHP教程 > nginx反向代理失败,能抓到页面,但页面内部的css因为使用相对路径无法获取,怎么办?

nginx反向代理失败,能抓到页面,但页面内部的css因为使用相对路径无法获取,怎么办?

时间:2021-07-01 10:21:17 帮助过:59人阅读

环境是windows,目前的配置就是这样:

   location / {
            root   html;
            index  index.html index.htm;
        }
        
        location /baidu {
            proxy_pass http://localhost:97;
            proxy_set_header Host $host;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
    

抓取的页面这样显示

回复内容:

环境是windows,目前的配置就是这样:

   location / {
            root   html;
            index  index.html index.htm;
        }
        
        location /baidu {
            proxy_pass http://localhost:97;
            proxy_set_header Host $host;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
    

抓取的页面这样显示

    root   "网站路径";
    
    location / {
        index  index.html index.htm;
    }
    
    location /baidu {
        proxy_pass http://localhost:97;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

人气教程排行