如何讓我的codigniter網址seo友好。如何讓我的codigniter網址seo友好
這是我的網址
http://localhost/picker2/web/search?category=doctor
我想網址這樣
http://localhost/picker2/web/search/doctor/
如何讓我的codigniter網址seo友好。如何讓我的codigniter網址seo友好
這是我的網址
http://localhost/picker2/web/search?category=doctor
我想網址這樣
http://localhost/picker2/web/search/doctor/
閱讀這篇文章www.askaboutphp.com/58/codeigniter-mixing-segment-based-url-with-querystrings.html
像這樣創建網址:http://heloo.com/article/codeigniter-based-url 添加此代碼在routes.php
$route['article/(:any)'] = "article/readmore/$1";
描述:
其實你有兩個選項
1)使用路線(這個已經denyptw討論吧?)
2)使用的網址助手url_title功能
注意:您可以用它代替查詢字符串
http://localhost/picker2/web/search?category=doctor
http://localhost/picker2/web/search/doctor/
網絡參數控制器,搜索功能,醫生參數
示例:
class Web extends CI_Controller
{
public function search($value)
{
//use this $value in your searching logic
}
}
你需要實例網址助手的
檢查此鏈接Codeigniter URL: How to display id and article title in the URL
這已經被問了幾次,我相信,如果你看看堆棧溢出,你會發現它。 – user4419336