For testing purpose, I copied all the code and DB records from our live server to a local server.
I edited the following files :
/application/config/config.php (I also edited the DB record)
//$config['base_url'] = 'https://www.OurWebsite.eu/';
$config['base_url'] = 'http://localhost/test/';
index.php
//define('ENVIRONMENT', 'production');
define('ENVIRONMENT', 'development');
/application/config/database.php
$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'test_localhost';
$db['default']['password'] = '**************';
But when I open a web browser I have to following error :
Firefox : The page is not well redirected
Chrome : ERR_TOO_MANY_REDIRECTS
I already tried to change this in /application/config/config.php
$config['uri_protocol'] = 'AUTO';
With all others values but none of them worked.
I also tried to delete my .htaccess without success.
.htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(themes)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|assets|static|img|css|js|map|favicon\.ico)
RewriteRule ^(.*)$ ./index.php?/$1 [L,QSA]
RewriteRule ^sitemap\.xml$ ./index.php?/$1 [L,QSA]
RewriteRule ^robots\.txt$ ./index.php?/$1 [L,QSA]
</IfModule>
<IfModule mod_deflate.c>
<filesMatch "\.(js|css|png)$">
SetOutputFilter DEFLATE
</filesMatch>
</IfModule>
AddOutputFilterByType DEFLATE text/ico text/html text/plain text/xml text/css application/javascript application/x-javascript application/x-httpd-php application/rss+xml application/atom_xml text/javascript
The live server is running without errors with the exactly same code. I do not really know how to proceed... I never used CodeIgniter before, I may need a particular PHP extension enabled ?