服务器配置拒绝客户端上的Lucee



Lucee on windows 10-AH01630客户端被服务器配置拒绝

已经尝试了1000种方法来解决这个

我尝试了一周来在网上搜索所能找到的一切。

有人知道解决这个问题的办法吗?

在尝试了从更改目录到更改允许拒绝方案等1000种不同的方法后,我终于找到了答案

我改变了这个。。。。。。

<Proxy *>
# When using Apache 2.2, use the following line (without the "# ")
# Allow from 127.0.0.1
# When using Apache 2.4, use this line (without the "# ")
Require ip 127.0.0.1
</Proxy>
ProxyPreserveHost On
ProxyPassMatch ^/(.+.cf[cm])(/.*)?$ ajp://localhost:8009/$1$2

对此。。。。瞧!

<Proxy 8009>
# When using Apache 2.2, use the following line (without the "# ")
# Allow from 127.0.0.1
# When using Apache 2.4, use this line (without the "# ")
Require ip 127.0.0.1
</Proxy>
ProxyPreserveHost On
ProxyPassMatch ^/(.+.cf[cm])(/.*)?$ ajp://localhost:8009/$1$2

最新更新