1. 程式人生 > >thinkphp3.2 實現兩個頁面之間的連結跳轉

thinkphp3.2 實現兩個頁面之間的連結跳轉

利用thinkPHP框架如何實現兩個頁面之間的連結跳轉呢,步驟如下:

第一步:我建立了一個Application 模組,在Application 下的Home 下Cntroller中有預設的IndexController.class.php檔案, 它對應的模板檔案位於View下的Index資料夾裡的index.html;如果沒有Index資料夾,那麼自己新建一個Index資料夾,並且在Index資料夾中建立一個index.html檔案;

第二步:在view資料夾下再建立一個Hello資料夾,Hello資料夾中再建立一個hello.html檔案;

第三步:現在我想通過index.html中的一個連結跳轉到hello.html

第四步:

<a href="__APP__/Hello/hello">點我跳轉到hello..html頁面</a>

即可實現跳轉;