Currently I have the following .htaccess
php_flag magic_quotes_gpc Off
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ www/ [L]
RewriteRule (.*) www/$1 [L]
</IfModule>
So everything will be redirected to www/
Now I would like to add an exception based on the url. If the url has the following format:
/plugins/<plugin_name>/css/<css_name>.css
The call should be redirected to the following directory
usr/plugins/<plugin_name>/www/css/<css_name>.css
whereas <plugin_name> and <css_name> are variable and not fix.
Is that somehow possible?