Welcome Guest, Not a member yet? Register   Sign In
Route URL Question
#1

[eluser]Unknown[/eluser]
Hello All

How to implement shortcut url in codeigniter?

Example:
http://myspace.com/rnrm it is routed to the rnrm home profile.
http://myspace.com/signin it is routed to the signin controller
http://myspace.com/invalid it is an 404 error because invalid is not a valid profile or it is not a valid controller

I have modify route configuration like this:

Code:
$route['(.*)']='url/profile/$1';

And this is sample controller to determine if the url is valid or not:
Code:
class Url extends controller {
    function profile($url)
        if (isValidProfile($url)){
            $this->load->view('theprofile');
        }else{
            if(isValidController($url){

                // confusing here
                // how to route/forward to the corresponding controller

            }else{
                show_404();
            }
        }
    }
}
Thx in advance...




Theme © iAndrew 2016 - Forum software by © MyBB