http url中的host和hostname的区别
如题,host和hostname其实是不同的概念,容易混淆。简单的说,host=hostname+‘:'+port(not 80)如果http使用默认的80端口,host可以省略掉冒号+端口,看上去和hostname一样,比如一个网站的域名www.baidu.com在发送http get请求的时候,请求头中的"Host: "字段就是这里host的概念。...