From 8ae9cf2cbe73cbd8d0257d0db1ad567504181ab0 Mon Sep 17 00:00:00 2001 From: Carmine De Rosa Date: Fri, 15 Dec 2017 18:53:34 +0100 Subject: [PATCH] add htaccess --- .htaccess | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 .htaccess diff --git a/.htaccess b/.htaccess new file mode 100755 index 0000000..6673b15 --- /dev/null +++ b/.htaccess @@ -0,0 +1,10 @@ + +RewriteEngine On + +Rewritebase / + +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] + +