2016年2月9日 星期二

HTML URL HTTP

HTTP是網路最常見的協定之一
全名是HyperText Transfer Protocol
這個協定包含二個method
GET和POST
GET是請求檔案
POST則是傳資料到server

http://example.com/profile.html?user=jack&pwd=123#page=1
這行的url,HTTP會使用GET path http-version的參數
所以會變成GET profile.html?user=jack&pwd http/1.1
會向host example.com請求
注意路徑也包括了query parameters  ?user=jack&pwd

除此之外還會傳送header給host
header的型式,為標頭名: 值

Host:www.example.com
user-Agent: chrome

user-Agent指的是使用者用什麼來瀏覽網頁或請求這個網頁

沒有留言:

張貼留言