Multisite

Multisite support plugin for October

Back to Multisite Support

tsioukas
tsioukas

Sometimes we need to create clients pages like client1.example.com and client2.example.com. Multisite doesn’t support subdomains and wildcard subdomains like *.example.com

Is it possible to improve that?

Thanks

P.S. Also a language selector would be great

Last updated

Aebian
Aebian

Never used Multisite but I would configure the certificate trough nginx (or what webserver you are using).

server { listen 80; server_name DeadalusHD.com www.DeadalusHD.com; return 301 https://$server_name$request_uri; }

server { listen 443 ssl; ## listen for ipv4; this line is default and implied listen [::]:443 ssl default_server ipv6only=on; ## listen for$ ssl_certificate /etc/nginx/ssl/deadalushd.com.crt; ssl_certificate_key /etc/nginx/ssl/deadalushd.com.key; ssl_protocols TLSv1.2; ssl_ciphers HIGH:!aNULL:!eNULL:!LOW:!ADH:!RC4:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS;

Last updated

tsioukas
tsioukas

The problem isn’t on server. This plugin allows only a specific url without wildcards.

So if I set http://www.example.com to load ex_theme and active theme is def_theme, when I try to load http://subdomain1.example.com it loads def_theme and not theme ex_theme.

Only if I create a second record with http://subdomain1.example.com the theme changed to ex_theme.

Of course this is problem when you have site with wildcard subdomain.

1-3 of 3