Possible Duplicate:
using seo user friendly in php
Custom routing in code ingniter
I'm deving a CMS and I wanna use User-friendly URLs instead of Query Strings.
e.g.:
mysite.com/cat_1 => mysite.com/cat_1/itme_1
instead of
mysite.com/?cat=1 => mysite.com/?item=1
How should I implement this? any standard way?
My idea is to use of semi-dynamic pages and generating static snapshots with user-friendly URLS of dynamic pages that use query strings.