我是codeIgnitor的新手。我在我的索引文件中有一些鏈接。 我已經從index.php的URL所以現在看起來URL刪除像Codeignitor-刪除index.php後如何加載新頁面
http://localhost/app/Loader/demo_page
這如果我的Loader代碼:
class Loader extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->helper('url');
}
public function index()
{
$this->load->view('header');
$this->load->view('center');
$this->load->view('footer');
}
public function demo_page()
{
$this->load->view('demo');
}
}
當我點擊這個鏈接,我得到沒有發現錯誤。
現在我該怎麼辦?
我想從url中刪除控制器名稱,並希望顯示漂亮的網址,只有像域名/ app/mydemopage.php。 請幫忙。
如果你這樣做只是爲了搜索引擎友好的URL,然後使用routes.php文件,粘貼在routes.php文件的完整路徑,並定義你想要的網址。 –
是的,我試過,但路由不起作用 –