Solved!

My rewrite rules now look like this:

RewriteEngine on
RewriteCond %{REQUEST_URI} !/static/
RewriteRule ^(.+)\.(css|img|fonts|js)$ /static/$1 [L]

RewriteCond $1 !^(index\.php|images|robots\.txt|static)
RewriteRule ^(.*)$ /index.php/$1 [L]



On 07/21/13 20:34, Tamer Higazi wrote:
> Hi Vincenzo!
> 
> My rewrite rule now lookes like this:
> 
> RewriteEngine on
> 
> RewriteRule ^/(css|js|fonts)(/.*)?$ /static$2 [L]
> RewriteRule ^/(.*)$ /index.php/$1 [L]
> 
> and now nothing works :(
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to