diff --git a/.htaccess b/.htaccess deleted file mode 100644 index 0bd6920..0000000 --- a/.htaccess +++ /dev/null @@ -1,18 +0,0 @@ - - Options +FollowSymlinks - Options +Indexes - RewriteEngine on - - # set directory to FSL Install if your app is in a subfolder else set this to / - RewriteBase /gitprojects/dad-jokes_microservice - - # test string is a valid files - RewriteCond %{SCRIPT_FILENAME} !-f - # test string is a valid directory - RewriteCond %{SCRIPT_FILENAME} !-d - - RewriteRule ^(.*)$ index.php?uri=/$1 [NC,L,QSA] - # with QSA flag (query string append), - # forces the rewrite engine to append a query string part of the - # substitution string to the existing string, instead of replacing it. -