Shakup/silex-boilerplate/master/public/.htaccess - Htaccess File

Shakup/silex-boilerplate/master/public/.htaccess

# Set environment. Values: local|development|production
SetEnv ENVIRONMENT local

# Redirect incoming URLs to index.php
<IfModule mod_rewrite.c>
  Options -MultiViews

  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^ index.php [QSA,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
ENV, REQUEST_FILENAME

Comments

Apache