【问题标题】:My site can be called via localhost:8080/Mysite/index.html but not via localhost/Mysite/index.html我的网站可以通过 localhost:8080/Mysite/index.html 调用,但不能通过 localhost/Mysite/index.html
【发布时间】:2026-01-17 02:50:01
【问题描述】:

我正在使用 Apache 服务器。 localhost 的代理通行证的配置是这样的。有什么问题吗?

ProxyVia On
ProxyRequests Off

ProxyPass /error !
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/


 <Proxy http://localhost:8080/Mysite*>
          Order allow,deny
          Allow from localhost
 </Proxy>

【问题讨论】:

    标签: apache localhost


    【解决方案1】:

    更改“拒绝,允许”的顺序后,它起作用了。

    【讨论】:

      最近更新 更多