![]() |
SEO strategy: How to make mydomain.com/title-art-work to work ? - 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: SEO strategy: How to make mydomain.com/title-art-work to work ? (/showthread.php?tid=26588) |
SEO strategy: How to make mydomain.com/title-art-work to work ? - El Forum - 01-18-2010 [eluser]123wesweat[/eluser] Hi, How do i get this to work with codeigniter? Code: mydomain.com/art/details/title-art-work Code: mydomain.com/art/details/77 which selects the appropiate info based on ID I am thinking about Code: mydomain.com/art/details/title-art-work-77 so adding the id as last and use it to query the database. SEO strategy: How to make mydomain.com/title-art-work to work ? - El Forum - 01-18-2010 [eluser]rogierb[/eluser] This has been covered a lot in this forum. Do a search for slug. 1: you need a unique slug in your record 2: you use the slug instead of the id to fetch the record. tada... |