简单,但不适合我...
在我的Ubuntu主机上,我有一个Geoserver实例侦听端口8080:
http://<hostname>:8080/geoserver
我想要实现的是让客户通过别名来访问Geoserver:
http://<hostname>/geoserver
我必须通过PHP5(没有Apache技巧)来做。
我想我需要的是一个HTTP PHP代理。
示例:
#Client asks for http://<hostname>/geoserver/wms?param1=x¶m2=y¶m3=z&...
#Proxy intercepts the request
#Proxy asks for http://<hostname>:8080/geoserver/wms?param1=x¶m2=y¶m3=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库/解决方案来解决这个问题?存在许多解决方案,但到目前为止我还未能找到一个简单的解决方案
谢谢