# Set the application environment.
SetEnv APPLICATION_ENV development
# These rules direct all requests to index.php, except when
# a matching file is found.
RewriteEngine On
RewriteRule !.(js|css|ico|gif|jpg|png|pdf|flv|swf)$ index.php
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]