Back to all status codes
301

Moved Permanently

The requested resource has been permanently moved to a new URL. Search engines will update their links.

Common Causes

  • URL structure change
  • Domain migration
  • HTTP to HTTPS migration
  • Removing www from URL

Fix Solutions

Update internal links

Update all internal links to point to the new URL directly.

Set up proper redirect

Configure server to redirect old URLs to new ones.

Code Examples

# Permanent redirect from old URL to new URL
server {
    listen 80;
    server_name old-domain.com;
    return 301 https://new-domain.com$request_uri;
}

Related Tools