HTTPS, WWW, and Slashes: The URL Issues You Don't See
Type your domain into your browser four different ways:
http://yourdomain.comhttp://www.yourdomain.comhttps://yourdomain.comhttps://www.yourdomain.com
Do all four load the same page? Do they all redirect to one canonical version? If they load as four separate URLs, you have a problem you have probably never noticed — and it may be silently hurting your SEO.
30-Second Audit: Type your domain four ways —
http://,https://, withwww., withoutwww.. If they do not all redirect to one single version, you have a duplicate content issue that is splitting your search authority. Keep reading to learn exactly how to fix it.
Quick Navigation
- Why URL Variations Matter
- The Four Common URL Problems
- How to Check Your Site
- How to Fix Each Problem
- Canonical Tags: The Safety Net
- Frequently Asked Questions
Why URL Variations Matter
Google treats each URL as a unique page. If the same content is accessible at http://yourdomain.com/about and https://www.yourdomain.com/about, Google may see two pages with identical content. This causes three problems:
Duplicate content. Google does not want to index the same content twice. It has to decide which version to keep and which to ignore. Sometimes it picks the wrong one.
Split authority. If some external sites link to http://yourdomain.com and others link to https://www.yourdomain.com, the link authority is split between two URLs instead of concentrated on one.
Crawl waste. Google spends time crawling multiple versions of the same page when it could be crawling your new content instead.
The Four Common URL Problems
Problem 1: HTTP vs HTTPS
The issue: Your site is accessible on both http:// and https://.
Why it happens: SSL certificates are now standard, but if your server does not redirect HTTP to HTTPS, both versions remain accessible. Some hosting providers set up the redirect automatically. Others do not.
What Google thinks: These are two different sites. Google strongly prefers HTTPS. If both versions are accessible, Google will usually pick HTTPS, but the HTTP version still exists, consuming crawl budget and potentially confusing link signals.
Problem 2: WWW vs Non-WWW
The issue: Your site responds at both www.yourdomain.com and yourdomain.com.
Why it happens: Both are technically valid. Without an explicit redirect, the server may serve content at both. This is a server configuration issue.
What Google thinks: These are different hosts. www.yourdomain.com and yourdomain.com are different domains in Google's eyes unless you configure one to redirect to the other.
Problem 3: Trailing Slashes
The issue: yourdomain.com/about and yourdomain.com/about/ both load the same page.
Why it happens: Web servers can be configured to handle trailing slashes either way. Without explicit rules, both versions may work.
What Google thinks: These are two different URLs. The content is identical, so Google tries to pick one. But links pointing to the two different versions split authority.
Problem 4: Case Sensitivity
The issue: yourdomain.com/About and yourdomain.com/about both work.
Why it happens: Most web servers handle URL paths case-insensitively by default, but some (especially Linux-based servers) are case-sensitive. This is less common now but still occurs.
How to Check Your Site
Quick Test
Open each of these URLs in an incognito/private browser window and note what happens:
http://yourdomain.com→ Should redirect to your preferred HTTPS versionhttp://www.yourdomain.com→ Should redirect to your preferred versionhttps://yourdomain.com→ Should either be your canonical or redirecthttps://www.yourdomain.com→ Should either be your canonical or redirect
What you want to see: All four URLs redirect (301) to one single version. That single version is your canonical URL.
GSC Check
In Google Search Console, check what property is configured. If you have separate properties for http:// and https:// or www and non-www, you may have a URL variation issue.
The best practice is to use a Domain property (sc-domain:yourdomain.com) which covers all variations.
Sitemap Check
Open your sitemap (yourdomain.com/sitemap.xml). Check the URLs listed. Are they consistent? All HTTPS? All with or without www? Consistent trailing slash usage? If your sitemap mixes URL formats, that is a problem.
How to Fix Each Problem
Fix HTTP to HTTPS Redirect
In your hosting control panel or server configuration, add a redirect rule that sends all HTTP traffic to HTTPS. In most hosting platforms, this is a single toggle.
For Apache (.htaccess):
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
For Nginx:
server {
listen 80;
return 301 https://$host$request_uri;
}
For managed platforms: Squarespace, Shopify, and most managed hosts handle this automatically. Check your SSL/security settings.
Fix WWW vs Non-WWW
Decide on one version (either works — the choice is preference) and redirect the other to it. Add this alongside your HTTPS redirect.
Fix Trailing Slashes
Pick one convention and stick to it. Most modern frameworks use URLs without trailing slashes. Configure your server to redirect one to the other with a 301.
Canonical Tags: The Safety Net
Even with proper redirects, add canonical tags as a safety net. A canonical tag tells Google: "This is the preferred URL for this content."
<link rel="canonical" href="https://yourdomain.com/about" />
Place this in the <head> of every page. Most CMS platforms add canonical tags automatically. Verify by viewing your page source and searching for "canonical."
Canonical tags do not replace redirects — they work together. Redirects handle the user experience (sending visitors to the right URL). Canonical tags handle the SEO signal (telling Google which URL to index).
For checking whether your canonical URLs are set up correctly, the page audit feature in Brass-SEO can inspect your pages and identify canonical tag issues alongside other technical SEO factors.
Frequently Asked Questions
Does it matter whether I choose www or non-www?
No. There is no SEO advantage to either. What matters is consistency — pick one and redirect the other. Most modern sites use non-www (shorter, cleaner), but www is equally valid.
Can URL issues actually hurt my rankings?
Yes, indirectly. Split authority means external links are divided between URL versions, weakening the ranking signal. Duplicate content can cause Google to index the wrong version. Crawl budget waste means Google may not discover new content as quickly. For small sites, the impact is usually minor. For larger sites, it can be meaningful.
How do I know if Google is indexing the wrong URL version?
In GSC, go to Performance > Pages and look at the URLs shown. If you see both www and non-www versions, or both trailing slash and non-trailing slash versions, Google is indexing multiple versions. Use the URL Inspection tool to check the canonical URL Google has selected for specific pages.
My site uses a CMS — do I need to worry about this?
Most modern CMS platforms handle the basics (canonical tags, HTTPS). But check: type your domain with HTTP into a browser and see if it redirects to HTTPS. Try with and without www. If all variations redirect to one canonical URL, your CMS has it handled.
Will fixing URL issues give me an immediate ranking boost?
Not immediately, but it removes a drag on your SEO. Consolidating authority and eliminating duplicate content helps over time as Google re-crawls and re-evaluates your pages. Think of it as removing a weight from your backpack rather than adding a jet engine.