I see...Well am also testing Pound and Pound takes care of these issues... Thing is... Pound is not as proven as Apache or is it? :D
Case insensitive URLs, trailing slashes and what not...As for ProxyPassReverse doen't matter if it's case sensitive or not. The bigest problem is when someone types in the URL.
Which brings me to rewrite, I went through the rewrite guide, which shows most use cases like the trailing slash problem. But i ran into some issues...
When I have some time I will post my config for that... Thanks Joshua Slive wrote:
On 4/18/05, Anastasios Angelidis <voodoo@xxxxxxxxxxxx> wrote:Now I would like to add spell checking to make my url's caseinsensitive. So I did... <VirtualHost *:80> CheckSplling on ProxyRequests off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass /somewhere/ http://myinternalserver.com/somewhere/ ProxyPassReverse /somewhere/ http://myinternalserver.com/somewhere/ </VirtualHost> But it doesn't seem to work...And it won't. mod_spelling only corrects filesystem access. What you want isn't even theoretically possible, since the reverse proxy doesn't have any idea about the correct case of the URLs. So what exactly are you trying to do? If you just want to make /somewhere/ case insensitive, then you can use RewriteRule with the P and NC flags (although the ProxyPassReverse part would still be case sensitive). Joshua. --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx
--------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx