All free subdomains have SSL by default

I get this message for my account when I try to get Neww SSL Certificate.
“Custom SSL certificates are no longer supported for free subdomains. All free subdomains have SSL by default.”

But I get this warning on the browser when I visit my site. I have to click advanced button and accept the risk to continue because of lack of SSL certificate.

Error Message

Your connection is not private

Attackers might be trying to steal your information from www.diviexperiments.infy.uk (for example, passwords, messages, or credit cards). Learn more about this warning

net::ERR_CERT_COMMON_NAME_INVALID
(please specify the URL of the site on which you are experiencing the problem)

Read

6 Likes

you’ll need to remove the www. from the beginning of your URL. This is because sub sub domains (such as www.) are not covered.

5 Likes

Thanks for your reply. Can you please explain how to remove www from this listing, how to access the right place to remove it

Honestly, no, because I don’t know how your specific site works, that something only you know.

If you’ve written your own HTML and your not using a system like wordpress, then a .htaccess file like below can do the job for you:

RewriteEngine On

# Force HTTPS
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

# Remove www.
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]

But thats as far as my experience extends

3 Likes

Thanks, it is a wordpress site.
I have checked everything on this infinity hosting account, there isn’t any place to remove www

You’ll have to follow this to change your website URL:

9 Likes

I know its a setting within wordpress not within your hosting account

2 Likes

It worked, thanks a lot.
Now I need to reassign images etc without www to show up.

6 Likes