I'm migrating a site running static HTML on a Sun One (iPlanet) 6.1 to a Drupal site on Apache.
There is a requirement to keep the old server running and serving old content until it can be moved into Drupal. I figured the easiest way is to have some reverse proxy entries in Apache that point to this old content.
Here is what I have in the httpd.conf at the server context level.
RewriteEngine On
RewriteLogLevel 9
RewriteLog "/var/log/httpd/rewrite_log"
RewriteRule offices/ist/?(.*)$ http://oldserver/offices/ist/$1 [P]
<Location /offices/ist/>
ProxyPassReverse /
</Location>
When I make a request like this everything works OK.
http://newserver/offices/ist/somedir/
If I make the same request (without the trailing slash) it 302 redirects using the old server's name.
http://newserver/offices/ist/somedir => Redirect to http://oldserver/offices/ist/somedir/
Shouldn't Apache catch this redirect before it's sent back to the client?
Can I get Apache to rewrite these requests before they're sent to the old server?
Stop Trailing Slash Redirectionso why a redirection with a trailing slash is OK and one without it is not? Do you want to pass the trailing slash when present in the incoming URI, do you want to add it if not present, do you want to remove it, what? – faa Feb 13 at 9:02