From 9b4ae9c4ab1717a4498d41cc44dea9be352f09f9 Mon Sep 17 00:00:00 2001 From: Rafael Barros Date: Tue, 14 May 2019 13:07:55 -0300 Subject: [PATCH] Added a .htaccess file to the web directory (#206) --- web/.htaccess | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 web/.htaccess diff --git a/web/.htaccess b/web/.htaccess new file mode 100644 index 0000000..197199e --- /dev/null +++ b/web/.htaccess @@ -0,0 +1,4 @@ +RewriteEngine on +RewriteCond %{REQUEST_FILENAME} !-d +RewriteCond %{REQUEST_FILENAME} !-f +RewriteRule . index.php [L]