Skip to content

Instantly share code, notes, and snippets.

View k-con's full-sized avatar

k-con k-con

  • k-con
  • Mönchengladbach
View GitHub Profile
@k-con
k-con / htaccess.df
Last active April 19, 2018 12:30 — forked from gthln/htaccess.df
.htaccess for Laravel at Domainfactory, replaces .htaccess in public
<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>