Welcome Guest, Not a member yet? Register   Sign In
redirect to different controller not working
#1

[eluser]Gukkie[/eluser]
Hi, i have a problem when i use the redirect() to redirect to another controller.

From login Controller:

redirect('site/user');

This does not work unless i add a base_url, redirect(base_url().'site/user');.

Why is this so?
#2

[eluser]pickupman[/eluser]
Depending on what you have set for base_url in your config, I assume its set at /. You could try:
Code:
redirect('/site/user');
#3

[eluser]Gukkie[/eluser]
Hi, i fixed it, the problem was because i set $config['enable_query_strings'] = TRUE;, i've changed it back to FALSE and it works Smile
#4

[eluser]pickupman[/eluser]
Well done Smile




Theme © iAndrew 2016 - Forum software by © MyBB