I have site that was setup without SSL and now we're testing it over SSL. I have setup my Vhost correctly and use the exact same rewrite rules. It just basically adds a /1/ in front of all the specified urls. I have this machine setup as a reverse proxy and it works if you access the site via http:// with all the rewrites working correctly. If you access the site via https:// the rewrites show up in the rewrite log but the webpage does not render correctly. Any ideas as this is driving me crazy! I have the newest version of Apache 2.2.4.
RewriteEngine on
RewriteRule ^/css(.*) /1/css$1 [P]
RewriteRule ^/ban_prod(.*) /1/ban_prod$1 [P]