http://codeigniter.com/user_guide/general/routing.html
上周在思考製作Blog時, 如何讓網址可以一個name對應到一個post_id
假設我有一個網址
http://localhost/post/list/10
我想要他不要每篇post都只是跟隨著post_id
我可以利用route來做
在route.php中加入
$route['post/cool'] = "post/list/10";
這樣我就可以用
http://localhost/post/cool
來mapping到post/list/10
來達到SEO的效果。