WordPress Multisite with Wildcard Certificates not mapping correctly
It seems that I was getting wrong the virtual host configuration file to redirect all http requests to https This is my current working configuration: /etc/apache2/sites-available/a.com.conf <VirtualHost *:80> ServerAdmin [email protected] ServerName a.com ServerAlias *.a.com DocumentRoot /var/www/a.com/html ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined RewriteEngine on RewriteCond %{SERVER_NAME} =a1.a.com [OR] RewriteCond %{SERVER_NAME} =a.com RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] </VirtualHost> … Read more