From 2ccc1e58a945cacab490e160a4f6a85ec944c028 Mon Sep 17 00:00:00 2001 From: Miguel Nogueira Date: Fri, 8 Jun 2018 14:52:18 +0000 Subject: [PATCH] Corrects missing redirection error Fixes #1 --- public/.htaccess | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 public/.htaccess diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..c64f65f --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,6 @@ +RewriteEngine On +RewriteBase /public + +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^ index.php [QSA,L] \ No newline at end of file