也許在google和stackoverflow中有很多結果。但不幸的是,到目前爲止,我還沒有得到任何工作。Codeigniter URL路由?
我有什麼 - http://localhost/profile/user/userA/12345
我想要什麼 - http://localhost/profile/user/userA
條件
- 需要用12345和URL應該解析結果be
http://localhost/profile/user/userA
頁的結果與通過最後一段即12345提供的數據顯示,在查詢
檢索這個節目你的代碼,你試過嗎? –
配置文件是控制器,用戶是方法。 userA和12345是我通過鏈接傳遞的段,在控制器配置文件方法用戶中,我使用$ this-> uri-> segment(4)捕獲該段,並在我的查詢中傳遞該段。我想要的是邏輯什麼應該保留,但url應該從profile/user/userA/12345更改爲profile/user/userA – Subhajit
'12345'它是否會隨用戶更改的id? –