Welcome Guest, Not a member yet? Register   Sign In
Always redirect me to the home page
#8

You need to add the trailing slash to your base url:

PHP Code:
$config['base_url'] = "http://xxxxxxxx.com/Projet/"

You may need to change the .htaccess file to this:

Code:
RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]

You may also need to try a different URI protocol:

PHP Code:
$config['uri_protocol']    = 'REQUEST_URI'
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
RE: Always redirect me to the home page - by InsiteFX - 09-29-2016, 03:48 AM



Theme © iAndrew 2016 - Forum software by © MyBB