curl http://127.0.0.1:8000
вы увидите HTML-код ответа
curl http://127.0.0.1:8000 -I
увидите заголовки ответа
к примеру, в таком виде отдает редирект Symfony:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="1;url=/" />
<title>Redirecting to /</title>
</head>
<body>
Redirecting to <a href="/">/</a>.
</body>
</html>
HTTP/1.1 302 Found
Host: 127.0.0.1:8000
Connection: close
X-Powered-By: PHP/7.0.4-7ubuntu2.1
Cache-Control: no-cache
Location: /
Content-Type: text/html; charset=UTF-8
X-Debug-Token: bc419c
X-Debug-Token-Link: http://127.0.0.1:8000/_profiler/bc419c
Date: Sat, 09 Jul 2016 08:21:56 GMT