2009/3/2 Roman Medina-Heigl Hernandez <ro...@rs-labs.com>: > More comments: > - at the beginning I tried something like: > RewriteBase /stats > RewriteCond $1 !^%{REMOTE_USER}/ > RewriteRule ^/clientes/(.*) > /stats/%{REMOTE_USER}/stats/http/$1 [PT] > > The problem is that you cannot have %{REMOTE_USER} as 2nd parameters in > RewriteCond, so I have no way for comparing it with $1
-didn't read all-; but you can compare it with a regEx internal backreference. RewriteBase /stats RewriteCond %{REMOTE_USER}<>$1 !^([^<]+)<>\1 RewriteRule ^/clientes/(.*) /stats/%{REMOTE_USER}/stats/http/$1 [L] Bob --------------------------------------------------------------------- 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-unsubscr...@httpd.apache.org " from the digest: users-digest-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org