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:
Contents
Example
Client request:
GET /index.php HTTP/1.1Host: www.example.orgServer response:
HTTP/1.1 301 Moved PermanentlyLocation: http://www.example.org/index.aspHere is an example using a .htaccess file to redirect a non-secure URL to a secure address without the leading "www":
RewriteEngine OnRewriteCond %{HTTPS} offRewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]RewriteRule ^(.*)$ http://%1/$1 [R=301,L]RewriteCond %{HTTPS} onRewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]RewriteRule ^(.*)$ https://%1/$1 [R=301,L]RewriteEngine OnRewriteCond %{SERVER_PORT} 80RewriteRule ^(.*)$ https://example.com/$1 [R,L]Here is an example using a PHP redirect:
<?phpheader("HTTP/1.1 301 Moved Permanently");header("Location: http://example.com/newpage.html");exit();?>Equivalently simple for an nginx configuration:
location /old/url/ { return 301 /new/url;}Search engines
Both Bing and Google recommend using a 301 redirect to change the URL of a page as it is shown in search engine results.
References
HTTP 301 Wikipedia(Text) CC BY-SA