About 52 results
Open links in new tab
  1. What's the difference between HTTP 301 and 308 status codes?

    An overview of 301, 302 and 307 The RFC 7231, the current reference for semantics and content of the HTTP/1.1 protocol, defines the 301 (Moved Permanently) and 302 (Found) status code, that allows …

  2. HTTP redirect: 301 (permanent) vs. 302 (temporary)

    Aug 13, 2013 · When a search engine spider finds 301 status code in the response header of a webpage, it understands that this webpage no longer exists, it searches for location header in …

  3. html - How to properly make 301 redirect - Stack Overflow

    Feb 20, 2018 · A 301 redirect essentially means "Moved Permanently" as an HTTP status code and will be recognised for SEO purposes. Achieving this within an .htaccess file is the most efficient way of …

  4. c - Why do I get 301 Moved Permanently - Stack Overflow

    Jul 13, 2022 · The 301 is happening on the server side of the .net site ... It is saying that the page you are trying to access has moved. This could simply be because the server moves you from …

  5. Difference between HTTP redirect codes - Stack Overflow

    The 301 redirect code seems clear enough: This means the resource was permanently moved to another URI, and future requests should use that URI. And the 307 redirect code also seems clear: it …

  6. url - 301 redirect vs 307 redirect - Stack Overflow

    Feb 7, 2013 · It's correct. Actually 307 is variation of the more common 302 redirect 301 Moved Permanently This and all future requests should be directed to the given URI. 307 Temporary …

  7. Is there still a use case for HTTP 301 rather than HTTP 308 to indicate ...

    Nov 23, 2018 · The HyperText Transfer Protocol (HTTP) 301 Moved Permanently redirect status response code indicates that the resource requested has been definitively moved to the URL given …

  8. What's the difference between a 302 and a 307 redirect?

    301: permanent redirect: the URL is old and should be replaced. Browsers will cache this. Example usage: URL moved from /register-form.html to signup-form.html. The method will change to GET, as …

  9. What does HTTP/1.1 302 mean exactly? - Stack Overflow

    Jun 10, 2009 · In the particular case of redirects to trailing slash URLs, our search results will likely show the version of the URL with the 200 response code (most often the trailing slash URL) -- regardless …

  10. How to test an HTTP 301 redirect? - Stack Overflow

    Jun 14, 2010 · How can one easily test HTTP return codes, like, say, a 301 redirect? For example, if I want to "see what's going on", I can use telnet to do something like this: ... $ telnet nytimes.com 80 Tr...