Historically, I have been able to do this using the ManagedFusion URL Rewriter library located here:
http://managedfusion.com/products/url-rewriter/
But I can't seem to get the rules right to handle SubSonic...
Anyone else have any sucess with something similar?
I am running this on a Windows Home Server, which is fairly dependent on IIS running properly...
If someone has tried, here are the rules I am trying that are working partially... I get the top pane and the JWPlayer pane, an incomplete right chat pane, and nothing in the Now Playing and Left Panes:
- Code: Select all
# Proxy to SubSonic
RewriteRule ^/subsonic$ /subsonic/ [R=301]
RewriteCond %{HTTP_REFERER} subsonic
RewriteCond %{REQUEST_URI} !(/?)subsonic/(.*)
RewriteRule ^(/?)(.*) /subsonic/$2 [R=301]
RewriteRule ^/subsonic/(.*) http://localhost:8082/$1 [P,L]
Thanks in advance,
Glenn
