Skip to content

Instantly share code, notes, and snippets.

@vuchkov
Forked from Guibzs/.htaccess
Created August 1, 2019 09:15
Show Gist options
  • Save vuchkov/a16aeb0035feb8bb5e8cafbb43bf6714 to your computer and use it in GitHub Desktop.
Save vuchkov/a16aeb0035feb8bb5e8cafbb43bf6714 to your computer and use it in GitHub Desktop.
Symfony 4 ~ .htaccess
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<IfModule !mod_rewrite.c>
<IfModule mod_alias.c>
RedirectMatch 302 ^/$ /index.php/
</IfModule>
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment