Eric Lemes wrote:
> I need to rewrite a url, translating to lowercase only the repository dir,
> in the example:
>
> http://myserver/svn/MyRepos/AnyDirWithAnyCase
>
> This should be translated to
>
> http://myserver/svn/myrepos/AnyDirWithAnyCase.
>
> I tried RewriteRule (\/.*\/.*) ${lowercase:{$1}} [L], but it didn't work (I
> don't understand how to tell it that $1 is what I need in lowercase).
eg.
RewriteMap lower int:tolower
RewriteRule ^/svn/(.*) /${lower:$1} [PT]
will transform anything starting with /svn/ to lowercase.
--
Robert
---------------------------------------------------------------------
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