07-01-2008, 01:38 AM
[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:
And this is sample controller to determine if the url is valid or not:
Thx in advance...
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();
}
}
}
}