Combining the best of mod_rewrite and mod_proxy

Combining the best of mod_rewrite and mod_proxy

am 02.02.2010 23:32:31 von Jon Stanley

I have a weird situation that I'm migrating a site that was using
WebSphere for a backend to using Resin. We have a requirement that
sessions be persistent to the app server, and we've done this thus far
by using ProxyPassMatch balancer://
stickysession=JSESSIONID and specifying the route to the backend app
server in the proxy definition.

I now have a requirement (or desire, I should say) for
case-insensitive matching of the URI to be passed through to the app
layer. I know that I can use mod_rewrite for this, using [NC] at the
end of the RewriteCond line that looks at the URI. However, how do I
get it to remain persistent to the app server in this setup?

------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org

RE: Combining the best of mod_rewrite and mod_proxy

am 02.02.2010 23:46:47 von pthomas

It seems that coercing all your URLs to lower case is one option. This
is a bit brute-force, and assumes that you have no valid upper-case
URLs! That said, perhaps you could add a rule as follows:

RewriteMap lower int:tolower
RewriteRule ^/(.*) /${lower:$1}

--Pete

-----Original Message-----
From: Jon Stanley [mailto:jonstanley@gmail.com]=20
Sent: Tuesday, February 02, 2010 5:33 PM
To: users@httpd.apache.org
Subject: [users@httpd] Combining the best of mod_rewrite and mod_proxy

I have a weird situation that I'm migrating a site that was using
WebSphere for a backend to using Resin. We have a requirement that
sessions be persistent to the app server, and we've done this thus far
by using ProxyPassMatch balancer://
stickysession=3DJSESSIONID and specifying the route to the backend app
server in the proxy definition.

I now have a requirement (or desire, I should say) for case-insensitive
matching of the URI to be passed through to the app layer. I know that
I can use mod_rewrite for this, using [NC] at the end of the RewriteCond
line that looks at the URI. However, how do I get it to remain
persistent to the app server in this setup?

------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server
Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org