Skip to content

Instantly share code, notes, and snippets.

@babeuloula
Forked from Guibzs/.htaccess
Created August 15, 2019 15:11
Show Gist options
  • Save babeuloula/a6a3afc151298bc970e493407ee0ce25 to your computer and use it in GitHub Desktop.
Save babeuloula/a6a3afc151298bc970e493407ee0ce25 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