CodeIgniter Forums
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: Url Routing (/showthread.php?tid=50401)



Url Routing - El Forum - 03-25-2012

[eluser]Unknown[/eluser]
Hi there,

I am a CodeIgniter noob and have a question regarding routing that I've not been able to find a definitive answer on yet. Hopefully someone can help.


I need my ecommerce url structure to be www.domain.com / category / subcategory / product
eg. www.domain.com/office/desks/computer table


if someone could give me a pointer thanks.

Cirius


Url Routing - El Forum - 03-25-2012

[eluser]InsiteFX[/eluser]
CodeIgniter Users Guide - URI Routing



Url Routing - El Forum - 03-25-2012

[eluser]Unknown[/eluser]
Thanks but I've looked at that and I am still struggling. Particularly when there may be multiple subcategory levels to deal with in the URL also.


Url Routing - El Forum - 03-25-2012

[eluser]Unknown[/eluser]
[quote author="Cirius" date="1332709525"]Hi there,

I am a CodeIgniter noob and have a question regarding routing that I've not been able to find a definitive answer on yet. Hopefully someone can help.


I need my ecommerce url structure to be www.domain.com / category / subcategory / product
eg. www.domain.com/office/desks/computer table


if someone could give me a pointer thanks.

Cirius[/quote]

maybe you can try this :
Quote:
Code:
<a href="&lt;?php  echo site_url('/category/subcategory/products'); ?&gt;">Link</a>