Check if automatic redirect from HTTP to HTTPS is configured for your site
This only checks HTTP/HTTPS. For a comprehensive analysis, use the full page check.
You can also audit your entire site. Duplicate titles and descriptions, orphan pages, broken links between sections, and other site-wide issues can only be found with a full site audit.
If you don't have an SEO specialist, we can help fix the errors found.
An HTTP to HTTPS redirect automatically sends users and search bots from the unsecured version (http://) to the secured version (https://). Without this redirect, the site may be accessible via both protocols, leading to content duplication, link equity loss, and reduced user trust. Browsers mark HTTP sites as "Not Secure," which deters visitors.
For HTTP to HTTPS redirects, use a 301 redirect (permanent redirect). It tells search engines the page has moved permanently, and all link equity transfers to the HTTPS version. A 302 redirect (temporary) doesn't transfer link equity and may cause search engines to continue indexing the HTTP version.
server { listen 80; server_name example.com; return 301 https://$host$request_uri; }RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]Google has confirmed that HTTPS is a ranking factor. A properly configured 301 redirect from HTTP to HTTPS ensures all link equity is transferred, prevents content duplication in the index, and signals to search engines the single canonical version of the site. Additionally, HTTPS sites receive priority in search results and earn more user trust.