CodeIgniter Forums
Not redirecting - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Not redirecting (/showthread.php?tid=27475)



Not redirecting - El Forum - 02-11-2010

[eluser]stuffradio[/eluser]
On my localhost I have it setup to redirect to a certain page if certain conditions are met. For example if they go, http://yoursite.com then I have it http://yoursite.com/index.php/Controller/method.

It won't do that on the host and it's not a code error. Any ideas?


Not redirecting - El Forum - 02-11-2010

[eluser]theprodigy[/eluser]
can you show the code you are using, please.


Not redirecting - El Forum - 02-11-2010

[eluser]stuffradio[/eluser]
Code:
<?php

        if ($this->uri->segment(1) == "" || strlen($this->uri->segment(1)) == 0):
        redirect(site_url("Page"));
        endif;        
?>