Hi,
I'm not sure if this is possible, but I would like to rewrite a url and then proxy it through another proxy (squid).
For example, let's say I have a local url...
/about
and I want to rewrite that to a fully qualified url...
RewriteRule ^/about http://www.google.com/intl/en/about.html
and then proxy that through another squid proxy...
RewriteRule .* http://localhost:3128/ [P]
In this case, the URL is rewritten to / and then proxied through to localhost:3128. I want to preserve the full rewritten URL and then proxy that.
Any ideas?
thanks,
Prateep