简单的PHP代理问题

时间:2013-05-30 12:55:12

标签: php apache http proxy geoserver

简单,但不适合我...

在我的Ubuntu主机上,我有一个Geoserver实例侦听端口8080:

   http://<hostname>:8080/geoserver

我想要实现的是让客户通过别名来访问Geoserver:

   http://<hostname>/geoserver

我必须通过PHP5(没有Apache技巧)来做。

我想我需要的是一个HTTP PHP代理。

示例:

#Client asks for  http://<hostname>/geoserver/wms?param1=x&param2=y&param3=z&...
#Proxy intercepts the request
#Proxy asks for http://<hostname>:8080/geoserver/wms?param1=x&param2=y&param3=z&... (with the same headers and body of the client's original request)
#Geoserver sends response to the Proxy
#Proxy forwards the response - as is - to the client

有没有人知道简单 PHP库/解决方案来解决这个问题?存在许多解决方案,但到目前为止我还未能找到一个简单的解决方案

谢谢

0 个答案:

没有答案