From 9cb2b59c086bdc1139ec7db0acdb2296371e1501 Mon Sep 17 00:00:00 2001 From: GRMrGecko Date: Wed, 4 Dec 2019 11:47:03 -0600 Subject: [PATCH] Added .htaccess to web api for standard configuration. --- web-api/.htaccess | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 web-api/.htaccess diff --git a/web-api/.htaccess b/web-api/.htaccess new file mode 100644 index 0000000..0003e00 --- /dev/null +++ b/web-api/.htaccess @@ -0,0 +1,6 @@ +RewriteEngine On +RewriteBase / +RewriteRule ^index\.php$ - [L] +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule . /index.php [L] \ No newline at end of file