I have a small problem using the proxy module in Apache_1.2b7.
In httpd.conf, I have:
ProxyRequests On
ProxyRemote http://xxx.bath.ac.uk http://xxx.bath.ac.uk
ProxyRemote * http://wwwcache.bath.ac.uk:XXXX/
In srm.conf, I have been trying one of the following in srm.conf:
RewriteRule ^/internal/xxx/?(.*) http://xxx.bath.ac.uk/$1 [P]
or
ProxyPass /internal/xxx http://xxx.bath.ac.uk/
If I request /internal/xxx/home.html, I would expect to see a request for
/home.html on xxx.bath.ac.uk.
Indeed, when using the rewrite module, the rewrite_log shows:
[24/Feb/1997:12:03:35 +0000] (1) go-ahead with proxy request
proxy:http://xxx.bath.ac.uk/home.html [OK]
However, the logs on xxx.bath.ac.uk show that the requested page was
/internal/ss1/home.html
Why is the request not for /home.html on xxx.bath.ac.uk?
-Mark.