301 Direct?

a 301 redirect is a permanent redirect from one URL to the other.
A 301 redirect also is often described as a "change of address form"
if your previous website was www.abc.com and you wanted to change it to www.newabc.com , you'd implement a 301 redirect from the old URL to the new one.
Now whoever typed in your old URL (or clicked on a leftover link to your old URL), would automatically appear at your new URL.
 
The HTTP response status code 301 Moved Permanently is used for permanent URL redirection, meaning current links or records using the URL that the response is received for should be updated. The new URL should be provided in the Location field included with the response. The 301 redirect is considered a best practice for upgrading users from HTTP to HTTPS.RFC 2616 states that:

If a client has link-editing capabilities, it should update all references to the Request URL.
The response is cachable.
Unless the request method was HEAD, the entity should contain a small hypertext note with a hyperlink to the new URL(s).
If the 301 status code is received in response to a request of any type other than GET or HEAD, the client must ask the user before redirecting.
 
Last edited:
Back
Top