CodeIgniter Forums
Custom URL routing - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Custom URL routing (/showthread.php?tid=56337)



Custom URL routing - El Forum - 12-11-2012

[eluser]Beginers[/eluser]
Hi All,

How do i route missing parameters like this?

This is the full url

Code:
http://localhost/sitename/controller_name/function_name/parameter_1/parameter_2

However i want to route this url if it is missing 1 or 2 parameters
Please help. Thanks in advance



Custom URL routing - El Forum - 12-12-2012

[eluser]Aken[/eluser]
Check if the parameters have values in your controller. If not, redirect to the default.

Remember you can give parameters defaults, also, if they are not present.