Question
How to configure and Install SSL Certificate for Multisite Wordpress?
I have a droplet with multiple wordpress instances running? I would like to install SSL certificate for one of the domain? Example I have www.site1.com and www.site2.com running on the same droplet.
I would like to have Site1.com moved to https://www.site1.com, while site2.com will remain as non-SSL. The ssl certificate is from godaddy.
I have update the .htaccess to use
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://site1.coml/$1 [R,L]
</IfModule>
also when I install and change the site1.com.conf file in sites-available , the site2.com is not loading. without installing SSL, both site1.com and site2.com are working fine.
Kindly Help?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×