我正在尋找導航如何在CI內工作的解釋。使用CodeIgniter導航
基本上,我有一個頂級導航的一些鏈接,並希望連接到它們。我只曾與
<a href="somelink.html">Some Link</a>
這樣做我明白你通過控制器然後在標籤的href部分的功能,但我似乎並沒有工作,所以我明明做錯事。
以我的產品頁面爲例。
<a href ="user/products">Products</a>
然後在「用戶」控制器
public function products() {
$data['title']='Products';
$this->load->view ('header_view', $data);
$this->load->view ('products.php', $data);
$this->load->view ('footer_view', $data);
}
結果爲它的功能被錯誤消息「對象不在服務器上找到」。
我錯過了什麼?
http://ellislab.com/codeigniter/user-guide/general/urls.html –
嘗試''Products - 你也可能沒有刪除'/ index.php /'從你的網址? – jtheman