IIS 中的友好 URL
Friendly URL in IIS
我有一个 url 的网络服务,例如:
'https://tgis.ml/geoserver/gwc/service/tms/1.0.0/ctw:bwc_bandonen_group@EPSG:900913@png/13/6520/3864.png?flipY=true'
在 IIS 中,我想使 url 更友好:
'https://tgis.ml/geo/tile/13/6520/3864.png'
我用以下方法解决了上述问题:
数学URL:
tile/([_0-9a-z-]+)/([_0-9a-z-]+)/([_0-9a-z-]+).png
重写URL:
http://localhost:3002/geoserver/gwc/service/tms/1.0.0/ctw:bwc_bandonen_group@EPSG:900913@png/{R:1}/{R:2}/{R:3}.png?flipY=true
我有一个 url 的网络服务,例如:
'https://tgis.ml/geoserver/gwc/service/tms/1.0.0/ctw:bwc_bandonen_group@EPSG:900913@png/13/6520/3864.png?flipY=true'
在 IIS 中,我想使 url 更友好:
'https://tgis.ml/geo/tile/13/6520/3864.png'
我用以下方法解决了上述问题:
数学URL:
tile/([_0-9a-z-]+)/([_0-9a-z-]+)/([_0-9a-z-]+).png
重写URL:
http://localhost:3002/geoserver/gwc/service/tms/1.0.0/ctw:bwc_bandonen_group@EPSG:900913@png/{R:1}/{R:2}/{R:3}.png?flipY=true