Welcome Guest, Not a member yet? Register   Sign In
Redirect "/" to "/home"?
#7

[eluser]darkhouse[/eluser]
I don't know if this would work, and this might be a "hacky" solution, but what if you wrote a library like this:

Code:
class Home_redirect {
  
   function Home_redirect(){
      $CI =& get_instance();
      %CI->load->helper('url');
      if(count($CI->uri->segment_array()) == 0){
         redirect('/home');
      }
   }

}

and then autoloaded that library? Again, I didn't test it, but it might do what you need without using mod_rewrite.


Messages In This Thread
Redirect "/" to "/home"? - by El Forum - 01-08-2009, 09:18 PM
Redirect "/" to "/home"? - by El Forum - 01-09-2009, 05:50 AM
Redirect "/" to "/home"? - by El Forum - 01-10-2009, 02:46 PM
Redirect "/" to "/home"? - by El Forum - 01-10-2009, 03:46 PM
Redirect "/" to "/home"? - by El Forum - 01-10-2009, 04:41 PM
Redirect "/" to "/home"? - by El Forum - 01-10-2009, 05:10 PM
Redirect "/" to "/home"? - by El Forum - 01-10-2009, 11:03 PM
Redirect "/" to "/home"? - by El Forum - 01-11-2009, 12:36 AM
Redirect "/" to "/home"? - by El Forum - 01-11-2009, 12:39 AM
Redirect "/" to "/home"? - by El Forum - 01-11-2009, 02:18 AM
Redirect "/" to "/home"? - by El Forum - 01-11-2009, 08:25 AM
Redirect "/" to "/home"? - by El Forum - 01-11-2009, 08:52 AM
Redirect "/" to "/home"? - by El Forum - 01-11-2009, 10:34 PM
Redirect "/" to "/home"? - by El Forum - 01-12-2009, 08:43 AM
Redirect "/" to "/home"? - by El Forum - 01-12-2009, 12:01 PM



Theme © iAndrew 2016 - Forum software by © MyBB