Skip to content

Commit

Permalink
Fix issue #100
Browse files Browse the repository at this point in the history
Fix for #100
  • Loading branch information
m0urs committed Mar 17, 2023
1 parent 177a7f3 commit 179100a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .htaccess.sample
Original file line number Diff line number Diff line change
Expand Up @@ -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]
RewriteRule ^(.*)$ /index.php?/$1 [L]

0 comments on commit 179100a

Please sign in to comment.