Alexeyco/silex-default-app/master/.htaccess - Htaccess File

Alexeyco/silex-default-app/master/.htaccess

RewriteEngine On

php_value post_max_size 20M
php_value upload_max_filesize 20M

RewriteBase /

<Files .*>
  Order Deny,Allow
  Deny From All
</Files>

RewriteRule ^(?:app|vendor)b.* index.php/$0 [L]

# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache