From 09ce444fd00c3e09afafe15b4973d3e5a34decd4 Mon Sep 17 00:00:00 2001 From: Prod-Panel Date: Sat, 30 May 2026 09:43:54 +0000 Subject: [PATCH] Ignore production config file htaccess --- .gitignore | 2 +- .htaccess | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 .htaccess diff --git a/.gitignore b/.gitignore index 665e481..ec539bb 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ application/config/config.php application/config/database.php -application/.htaccess +.htaccess application/cache/* !application/cache/index.html diff --git a/.htaccess b/.htaccess deleted file mode 100644 index 7257c88..0000000 --- a/.htaccess +++ /dev/null @@ -1,9 +0,0 @@ - - RewriteEngine On - RewriteBase /accounting_dev - - # Redirect requests to index.php - RewriteCond %{REQUEST_FILENAME} !-f - RewriteCond %{REQUEST_FILENAME} !-d - RewriteRule ^(.*)$ index.php?/$1 [L] -