HTML相對路徑和絕對路徑

來源:互聯網
上載者:User

標籤:style   class   code   tar   c   color   

如果你在引用檔案時(如加入超連結,或者插入圖片等),使用了錯誤的檔案路徑,

就會導致引用失效(無法瀏覽連結檔案,或無法顯示插入的圖片等)。

為了避免這些錯誤,正確地引用檔案,我們需要學習一下HTML路徑。

HTML有2種路徑的寫法:相對路徑和絕對路徑。

HTML相對路徑(Relative Path)同一個目錄的檔案引用

如果源檔案和引用檔案在同一個目錄裡,直接寫引用檔案名稱即可。

我們現在建一個源檔案info.html,在info.html裡要引用index.html檔案作為超連結。

假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html

假設index.html路徑是:c:\Inetpub\wwwroot\sites\blabla\index.html

在info.html加入index.html超連結的代碼應該這樣寫:

  1. <a href = "index.html">index.html</a>
複製代碼

如何表示上級目錄

../表示源檔案所在目錄的上一級目錄,../../表示源檔案所在目錄的上上級目錄,以此類

推。

假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html

假設index.html路徑是:c:\Inetpub\wwwroot\sites\index.html

在info.html加入index.html超連結的代碼應該這樣寫:

  1. <a href = "../index.html">index.html</a>
複製代碼

假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html

假設index.html路徑是:c:\Inetpub\wwwroot\index.html

在info.html加入index.html超連結的代碼應該這樣寫:

  1. <a href = "../../index.html">index.html</a>
複製代碼

假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html

假設index.html路徑是:c:\Inetpub\wwwroot\sites\wowstory\index.html

在info.html加入index.html超連結的代碼應該這樣寫:

  1. <a href = "../wowstory/index.html">index.html</a>
複製代碼

如何表示下級目錄

引用下級目錄的檔案,直接寫下級目錄檔案的路徑即可。

假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html

假設index.html路徑是:c:\Inetpub\wwwroot\sites\blabla\html\index.html

在info.html加入index.html超連結的代碼應該這樣寫:

  1. <a href = "html/index.html">index.html</a>
複製代碼

假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html

假設index.html路徑是:

c:\Inetpub\wwwroot\sites\blabla\html\tutorials\index.html

在info.html加入index.html超連結的代碼應該這樣寫:

  1. <a href = "html/tutorials/index.html">index.html</a>
複製代碼

HTML絕對路徑(Absolute Path)

HTML絕對路徑(absolute path)指帶網域名稱的檔案的完整路徑。

假設你註冊了網域名稱xinran001.com,並申請了虛擬機器主機,你的虛擬機器主機供應商會給你一個目錄,比如www,這個www就是你網站的根目錄。

假設你在www根目錄下放了一個檔案index.html,這個檔案的絕對路徑就是:

http://www.xinran001.com/index.html

假設你在www根目錄下建了一個目錄叫bbs,然後在該目錄下放了一個檔案index.php,這個檔案的絕對路徑就是

http://www.xinran001.com/bbs/index.php。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.