CodeIgniter Forums
url user friendly - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: url user friendly (/showthread.php?tid=60685)



url user friendly - El Forum - 06-02-2014

[eluser]smdelektronik[/eluser]
how can i edit this link "article?n1=1&n2=1" to "article/shoes/women"


url user friendly - El Forum - 06-02-2014

[eluser]Tpojka[/eluser]
Default configuration already has url like
Code:
http://www.example.tld/index.php/controller/method/param1/param2/param3
It is set in: application/config/config.php file with setting correct parameter ($config['enable_query_strings']) to FALSE value.
I would warmly suggest you to read user guide. This your question is answered in the first topic there.