From 179100a357279cecc6c68ba46a35577d549440e3 Mon Sep 17 00:00:00 2001 From: Michael Urspringer Date: Fri, 17 Mar 2023 11:12:22 +0100 Subject: [PATCH] Fix issue #100 Fix for https://github.com/m0urs/Cloudlog/issues/100 --- .htaccess.sample | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.htaccess.sample b/.htaccess.sample index 57dfd443..ca6b9215 100644 --- a/.htaccess.sample +++ b/.htaccess.sample @@ -3,6 +3,10 @@ # $config['index_page'] = ''; RewriteEngine On + +RewriteCond %{REQUEST_URI} ^/backup/$ +RewriteRule ^(.*)$ /index.php?/$1 [L] + RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d -RewriteRule ^(.*)$ /index.php?/$1 [L] \ No newline at end of file +RewriteRule ^(.*)$ /index.php?/$1 [L]