HTTP locationHTTP-заголовок Location возвращается в ответах HTTP-сервера в двух случаях:
ПримерыАбсолютный URLЗапрос: GET /index.html HTTP/1.1
Host: www.example.com
Ответ: HTTP/1.1 302 Found
Location: http://www.example.org/index.php
Относительный URLЗапрос http://www.example.com/blog: GET /blog HTTP/1.1
Host: www.example.com
Ответ: HTTP/1.1 302 Found
Location: /articles/
См. такжеПримечанияСсылки
|