Forum Moderators: phranque

Message Too Old, No Replies

Does this HTTP Header look right?

         

Propools

9:38 pm on Nov 8, 2010 (gmt 0)

10+ Year Member



Does this HTTP Header look right?

HTTP Response Header
Status: HTTP/1.1 200 OK
Connection: close
Date: Mon, 08 Nov 2010 21:27:50 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/5.2.8
Content-type: text/html
Content-Length: 31833

Propools

10:56 pm on Nov 8, 2010 (gmt 0)

10+ Year Member



Well, let me say it looks like this in another tool [searchenginenews.com]:
HTTP/1.1 301 Moved Permanently
Content-Length: 147
Content-Type: text/html
Location: [propools.com...]
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Date: Mon, 08 Nov 2010 22:53:06 GMT

301 Redirect - Retrieving headers for [propools.com...]
HTTP/1.1 200 OK
Date: Mon, 08 Nov 2010 22:53:06 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/5.2.8
Content-type: text/html
Content-Length: 0

brotherhood of LAN

12:25 am on Nov 9, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



The headers look OK, providing you're after a redirect from propools.com to www.propools.com,

I received the same headers using curl


curl -I propools.com
HTTP/1.1 301 Moved Permanently
Content-Length: 147
Content-Type: text/html
Location: http://www.propools.com/
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Date: Tue, 09 Nov 2010 00:23:24 GMT

curl -I www.propools.com
HTTP/1.1 200 OK
Date: Tue, 09 Nov 2010 00:23:27 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/5.2.8
Content-type: text/html
Content-Length: 0


The content length is 0 in the latter request as it was a HEAD request I made.