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]
Alexeyco/silex-default-app/master/.htaccess
