我的网站可以通过localhost:8080/Mysite/index.html调用,但不通过localhost/Mys



我正在使用Apache-Server。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>

改变"deny, allow"的顺序后,就可以工作了

相关内容

最新更新