Skip to content

Instantly share code, notes, and snippets.

View stockenberg's full-sized avatar

Marten Stockenberg stockenberg

  • Leipzig, Germany
View GitHub Profile
@gthln
gthln / htaccess.df
Last active October 29, 2021 12:29 — forked from tomraithel/.htaccess 2
.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 [L]
</IfModule>