flag + ProxyPassReverse so that you forward .*\.page to your LiveSite server (mod_proxy+mod_rewrite).Something like this:
# Send .page requests to livesite serverProxyPassMatch (.*\.page.*) http://livesite:1776/$1# Rewrite HTTP headers coming back from livesite so that end-users are none the wiserProxyPassReverse .* http://livesite:1776/
RewriteRule ^(.*\.page.*)$ http://localhost:1776/SITE$1?%{QUERY_STRING}
Replacing SITE with our site name from SharePoint.Thanks to all
ProxyPassMatch requires Apache v2.2.5+ and we are not there yet