From 52df1b780225970a79616fda457607bb25154d4d Mon Sep 17 00:00:00 2001 From: dl6nm Date: Wed, 27 May 2020 11:27:17 +0200 Subject: [PATCH] Added .htaccess sample file --- .htaccess.sample | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .htaccess.sample diff --git a/.htaccess.sample b/.htaccess.sample new file mode 100644 index 00000000..57dfd443 --- /dev/null +++ b/.htaccess.sample @@ -0,0 +1,8 @@ +# If you want to hide 'index.php' from the URL, rename this file to '.htaccess' on your server +# Then change the following variable in /application/config/config.php +# $config['index_page'] = ''; + +RewriteEngine On +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^(.*)$ /index.php?/$1 [L] \ No newline at end of file