I have the following code that tests for existence of a mapping through lexical comparison.
RewriteCond ${amapping:$1} >""
RewriteRule ^(.*)$ ${amapping:$1} [R=301,L]
if a mapping file contains:
/foo /frontpage.jsp <-- this maps!
/bar / <-- this does not!
What going on here? '/' > '' is true... so the only thing I can think of it it's not using '/' for the comparison. But when I remove the line I can clearly see in the logs
rewrite '/bar' -> '/'
Reference for the lexical comparison going on here can be found under http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritecond.
Thanks!
!=""? – Gumbo Aug 3 '11 at 16:49