Mobile app version of vmapp.org
Login or Join
Cugini213

: Disable ssl on subdomains I have a main domain where I added a private SSL. I also use cloudflare protection with their ssl, full strict, but I added a new subdomain in where I don't want

@Cugini213

Posted in: #Https #Wordpress

I have a main domain where I added a private SSL. I also use cloudflare protection with their ssl, full strict, but I added a new subdomain in where I don't want ssl enabled. It seems to be the case even if I didn't add anything.

So please can someone tell me how to disable ssl on my new subdomain in which i installed wordpress?

Thanks

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Cugini213

1 Comments

Sorted by latest first Latest Oldest Best

 

@Gretchen104

Just because you have an SSL certificate, you don't have to use it. By using instead of you will not be using SSL.

If you want to force people to not use SSL you can add the following to your .htaccess

RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^ %{HTTP_HOST}%{REQUEST_URI} [L,R=301]


But be aware, non SSL sites are now being marked insecure by browsers and also there appears to be a search engine ranking penalty.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme