Skip to content

Instantly share code, notes, and snippets.

@napestershine
Created May 15, 2019 19:51
Show Gist options
  • Select an option

  • Save napestershine/ff16bbf0e462b776880e2b7979aa2bd6 to your computer and use it in GitHub Desktop.

Select an option

Save napestershine/ff16bbf0e462b776880e2b7979aa2bd6 to your computer and use it in GitHub Desktop.
<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