Title1

Title2

Title3

12. 自動跳轉頁面

一、專案根目錄

  1. c:\ugm\github\hhjh106
    紅字部份為個人資料夾名稱,請自行對應
    藍字部份為我們存放「專案」的資料夾
  2. hhjh106:是我們在「github」上面的專案。
    由於教室的電腦會還原,所以每次進到教室,我們必需建立「ugm」「github
    但不要建立「hhjh106」,因為我們要從「github」將「hhjh106」複製回來,本地端
  3. 安裝好,git軟體時,記得做設定
    git config --global user.name "github帳號"
    git config --global user.email "github email"
  4. 設定好之後,請將「hhjh106」同步回來
    注意路徑必須,切換至「c:\ugm\github」執行
    git clone xxx 
    xxx 為github 數據庫的鑰匙 
  5. 當同步回來時,我又得將路徑,切換至「c:\ugm\github\hhjh106
  6. 然後檔案有異動時,必須執行下面三個步驟,將檔案上傳
    git add .
    git commit -m "訊息"
    git push origin master

二、專案的網址

  1. 將數據庫設定為「github」的pages
  2. https://www.ugm.com.tw/modules/tad_book3/page.php?tbdsn=624
  3. https://tawan158.github.io/hhjh106/
    紅字:github的帳號
    藍字:github的專案
  4. 而我們又將「resume」放到專案中,故當打開網頁,瀏覽器會自動打開
    https://tawan158.github.io/hhjh106/index.html
  5. 因此我們必須從 index.html著手處理,讓它直接跳轉至 https://tawan158.github.io/hhjh106/resume/index.html

三、跳轉網頁語法

<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="refresh" content="0;url=resume/index.html" />
  </head>
</html>