Re: [EMAIL PROTECTED] Help with case INsensitive Aliases

2007-02-16 Thread Joshua Slive
On 2/16/07, Jose Adriano Baltieri <[EMAIL PROTECTED]> wrote: Jesse Ross wrote: > Hi Jose, > > Are you using apache 1.3 or 2.0? I think the ?i flag is only > supported on 2.0. > > If you're using 1.3 you could always do something along the lines of: > > AliasMatch ^/[xX][yY][zZ] I'm using 2.2.4 o

Re: [EMAIL PROTECTED] Help with case INsensitive Aliases

2007-02-16 Thread Jose Adriano Baltieri
Jesse Ross wrote: Hi Jose, Are you using apache 1.3 or 2.0? I think the ?i flag is only supported on 2.0. If you're using 1.3 you could always do something along the lines of: AliasMatch ^/[xX][yY][zZ] I'm using 2.2.4 on Windows. Some aliases are longer than 2 characters. So I really need

Re: [EMAIL PROTECTED] Help with case INsensitive Aliases

2007-02-12 Thread Jesse Ross
Hi Jose, Are you using apache 1.3 or 2.0? I think the ?i flag is only supported on 2.0. If you're using 1.3 you could always do something along the lines of: AliasMatch ^/[xX][yY][zZ] Best, Jesse Ross Jose Adriano Baltieri wrote: I need to build an alias that is case INsensitive. Say th

[EMAIL PROTECTED] Help with case INsensitive Aliases

2007-02-12 Thread Jose Adriano Baltieri
I need to build an alias that is case INsensitive. Say that the url is this : http://www.myserver.com/xyz/filepath.htm I need that "xyz" can be typed anyway, that is, xYz or XYZ or whatever. How can I do that ? I have tried this : AliasMatch (?i)^/xyz(.*)"C:/xyz$1" Options MultiV