RE: [EMAIL PROTECTED] make URL's case insensitive

2005-10-24 Thread dogbert
Quoting Boyle Owen [EMAIL PROTECTED]: -Original Message- From: Nick Kew [mailto:[EMAIL PROTECTED] It is HTTP, the protocol of the Web, that is case-sensitive. Anything that tries to pretend it's not is broken. Exactly. The whole concept of case-sensitivity is wrong-headed

Re: [EMAIL PROTECTED] make URL's case insensitive

2005-10-24 Thread dogbert
Quoting Joshua Slive [EMAIL PROTECTED]: On 10/24/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: RewriteEngine On RewriteMap lc int:tolower RewriteRule (.*) ${lc:$1} [R] However, when I try this in apache (2.0.5x), I get the following message returned to me in firefox 1.0.7:

[EMAIL PROTECTED] make URL's case insensitive

2005-10-20 Thread dogbert
Hi All, I run apache 2.0.5x, and was wondering if there is a way to make URL's (after the domain portion) case insensitive in apache (all URL's), for example: www.foobar.com/JUNKFOOD.htm (client browser) would be processed by httpd as: www.foobar.com/junkfood.htm (server side) In reading