Removing SSL cert from Parked Domains or disabled https for them

e_k_

Registered
Oct 27, 2016
1
0
1
Turkey
cPanel Access Level
Root Administrator
Hi,

I have a main domain and it has 66 parking domains.

I installed a SSL certificate for my main domain and cpanel said to me:

The SSL website is also accessible via these domains, but the certificate does not support them. Web browsers will show a warning when accessing these domains via HTTPS:
- (List of my park domains)
Yes, it is right, when I visited the my parking domains, browsers show warning messages.
So, my questions are:

Are there any way to disable SSL certificates for parked domains?

---

or

---

Are there any way to force using http instead of https for parked domains?

For example using .htaccess

Some details for our .htaccess files:

We use a .htaccess redirection code in public_html like this:
Code:
Options +FollowSymLinks -MultiViews -Indexes
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^88\.88\.88\.88$ [NC,OR]
RewriteCond %{HTTP_HOST} ^([a-z.]+)?mydomain\.com$ [NC]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ [URL]https://www.mydomain.com/$1[/URL] [R=301,L]
Our parking domains use some redirection files under /parking folder. We have a .htaccess under this file too like this:
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ [URL]http://%1%{REQUEST_URI}[/URL] [R=301,QSA,NC,L]
RewriteCond %{HTTP_HOST} ^(.*)
RewriteRule ^(.*)$ [URL]http://www.mydomain.com/%1?language=EN[/URL] [L,NC,QSA]
Thank you very much for your helps
 
Last edited by a moderator:

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,258
463
Hello,

Have you considered converting the parked domains to addon domain names so they can have their own SSL certificates through the AutoSSL feature? This would prevent the warning message in the browser, and still allow you to define the document root for the domain names. There's a comparison between the two domain types at the bottom of the following document:

Aliases - Documentation - cPanel Documentation

Thank you.