From 1ff43b3557f73046ebddf85bcf2ffb1f0db79a6d Mon Sep 17 00:00:00 2001 From: carodej Date: Fri, 7 Aug 2020 09:38:22 +0200 Subject: [PATCH] added htaccess to redirect domain root to /public folder --- .htaccess | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .htaccess diff --git a/.htaccess b/.htaccess new file mode 100644 index 00000000..9e760aad --- /dev/null +++ b/.htaccess @@ -0,0 +1,3 @@ +RewriteEngine on +RewriteCond %{REQUEST_URI} !^public +RewriteRule ^(.*)$ public/$1 [L] \ No newline at end of file