{%hackmd SybccZ6XD %} <style> .toc > ul > li:first-child { list-style: none; } .toc > ul > li:first-child > a { display: none; } </style> URL Structure === ###### tags: `web.dev` `HTTP protocal` `Http Headers` > [name=Shueh Chou Lu] [time=Dec 17, 2020] --- [TOC] --- URL: `scheme://host:port/path` ## Scheme `http`, `https` ## Host `subdomain.domain.tld` ### Top layer Domain (TLD) - `com` - `com.tw` - `io` - `github.io` ## Port - `http` default `80` - `https` default `443` ## Path `/path?query_key=query_value#fragment` ## Diagram ```mermaid sequenceDiagram participant scheme participant subdomain participant domain participant tld participant port domain->>tld: site subdomain->>tld: host scheme->>port: origin ``` ## Example - `https://example.com:443` is same origin to `https://example.com` - `http://eample.com:443` is different origin to `http://example.com` (why? `http` default `port` is 80) - `http://api.example.com` is same site of `http://auth.example.com` ## Extension - `schemeful-same-site` consider scheme on `site` - HTTP header `Sec-Fetch-Site`([time=April, 2020]) can know where request came from - `same-site` - `same-origin` - `cross-site` - `none`
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up