Hello: I'm attempting to use mod_proxy to display various webpages via ProxyPass. I'm having issues getting the images to properly come through. Here is what I have in /conf/httpd.conf:
<IfModule proxy_module> ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass /google/ http://www.google.com/ ProxyPassReverse /google/ http://www.google.com/ </IfModule> And this is the error I am receiving in /logs/error.log: [Tue Feb 17 11:54:21 2009] [error] [client 127.0.0.1] File does not exist: D:/httpd/htdocs/intl, referer: http://localhost/google/ [Tue Feb 17 11:54:21 2009] [error] [client 127.0.0.1] File does not exist: D:/httpd/htdocs/extern_js, referer: http://localhost/google/ [Tue Feb 17 11:54:21 2009] [error] [client 127.0.0.1] File does not exist: D:/httpd/htdocs/images, referer: http://localhost/google/ Does anyone know how I can get these errors to go away and have the images display? Thanks, Chris Long