双斜杠apache网站配置代理

时间:2017-03-06 20:59:18

标签: apache proxy

我正在使用apache的http代理将ssl层添加到127.0.0.1:4444,它运行得很好但我有一个问题,我的网页浏览器上有一个双斜线...

这是配置

  #
  # Proxy
  #
ProxyRequests Off
<Proxy *>
    Order Allow,Deny
    Allow from all
    Require all granted
</Proxy>

  ProxyPass / http://127.0.0.1:4444
  ProxyPassReverse / http://127.0.0.1:4444
  RewriteEngine on
 RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
 RewriteRule .* http://127.0.0.1:4444%{REQUEST_URI} [P,QSA]

我得到http://blabla.fr//login.view 我希望http://blabla.fr/login.view

是否可以这样做并删除斜杠?

非常感谢你的帮助

1 个答案:

答案 0 :(得分:1)

在这里添加最终斜杠

ProxyPass / http://127.0.0.1:4444/   ProxyPassReverse / http://127.0.0.1:4444/