diff --git a/Network/HTTP/Types.hs b/Network/HTTP/Types.hs
--- a/Network/HTTP/Types.hs
+++ b/Network/HTTP/Types.hs
@@ -126,8 +126,10 @@
 , hIfModifiedSince
 , hIfRange
 , hLastModified
+, hLocation
 , hRange
 , hReferer
+, hServer
 , hUserAgent
   -- ** Byte ranges
 , ByteRange(..)
diff --git a/Network/HTTP/Types/Header.hs b/Network/HTTP/Types/Header.hs
--- a/Network/HTTP/Types/Header.hs
+++ b/Network/HTTP/Types/Header.hs
@@ -21,8 +21,10 @@
 , hIfModifiedSince
 , hIfRange
 , hLastModified
+, hLocation
 , hRange
 , hReferer
+, hServer
 , hUserAgent
   -- ** Byte ranges
 , ByteRange(..)
@@ -64,7 +66,7 @@
 type ResponseHeaders = [Header]
 
 -- | HTTP Header names
-hAccept, hAcceptLanguage, hAuthorization, hCacheControl, hConnection, hContentEncoding, hContentLength, hContentMD5, hContentType, hCookie, hDate, hIfModifiedSince, hIfRange, hLastModified, hRange, hReferer, hUserAgent :: HeaderName
+hAccept, hAcceptLanguage, hAuthorization, hCacheControl, hConnection, hContentEncoding, hContentLength, hContentMD5, hContentType, hCookie, hDate, hIfModifiedSince, hIfRange, hLastModified, hLocation, hRange, hReferer, hServer, hUserAgent :: HeaderName
 hAccept          = "Accept"
 hAcceptLanguage  = "Accept-Language"
 hAuthorization   = "Authorization"
@@ -79,8 +81,10 @@
 hIfModifiedSince = "If-Modified-Since"
 hIfRange         = "If-Range"
 hLastModified    = "Last-Modified"
+hLocation        = "Location"
 hRange           = "Range"
 hReferer         = "Referer"
+hServer          = "Server"
 hUserAgent       = "User-Agent"
 
 -- | HTTP Headers
diff --git a/http-types.cabal b/http-types.cabal
--- a/http-types.cabal
+++ b/http-types.cabal
@@ -7,7 +7,7 @@
 -- The package version. See the Haskell package versioning policy
 -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for
 -- standards guiding when and how versions should be incremented.
-Version:             0.7.0
+Version:             0.7.1
 
 -- A short (one-line) description of the package.
 Synopsis:            Generic HTTP types for Haskell (for both client and server code).
