Apache proxypass 破坏 URL

Apache proxypass 破坏 URL

我正在尝试使用我的 Apache 服务器来代理另一个网站,但它大多正常工作。我可以让根页面正确代理,但任何子目录或子页面都失败了:

prxy.james.net -> target.net
prxy.james.net/css/main.css -> target.netcss
("dns lookup for target.netcss failed")

看起来像是尾部斜杠错误,但我有尾部斜杠到处。以下是此子域名的条目,位于/etc/apache2/sites-available/000-default.conf

<VirtualHost *:80>
    ServerName prxy.james.net
    SSLProxyEngine On
    ProxyPass               /       "http://target.net/"
    ProxyPassReverse        /       "http://target.net/"
</VirtualHost>
<VirtualHost *:443>
    ServerName prxy.james.net
    ProxyPass               /       "https://target.net/"
    ProxyPassReverse        /       "https://target.net/"
</VirtualHost>

如果您需要更多信息,请告诉我!谢谢,詹姆斯

相关内容