> For example, something like this might work for your use case:
>
>   <IfModule mod_rewrite.c>
>     RewriteEngine on
>     RewriteLog /path/to/rewrite.log
>
>     # Define a map that uses the internal "tolower" function
>     RewriteMap lowercase int:tolower
>
>     RewriteCondition %m REWRITE_HOME
>     RewriteRule (.*) ${uppercase:$1}
>  </IfModule>

Oops.  I was copy/pasting this together from multiple different examples, and 
missed a spot; that's meant to be using "lowercase":

  <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteLog /path/to/rewrite.log

    # Define a map that uses the internal "tolower" function
    RewriteMap lowercase int:tolower

    RewriteCondition %m REWRITE_HOME
    RewriteRule (.*) ${lowercase:$1}
  </IfModule>

Cheers,
TJ


_______________________________________________
ProFTPD Developers List
<[email protected]>
https://lists.sourceforge.net/lists/listinfo/proftp-devel

Reply via email to