# if APPLICATION_ENVIRONMENT is not set (or returns false) use info.php to check if the apache module mod_env is loaded
# SetEnv APPLICATION_ENVIRONMENT testing
# SetEnv APPLICATION_ENVIRONMENT production
# SetEnv APPLICATION_ENVIRONMENT staging
SetEnv APPLICATION_ENV development
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]