I have a website example.com
and an SSL certificate for this domain only. No subdomains except www
are included. The site is based on Typo3.
On example.com/map
is an iframe (note the subdomain):
<iframe src=„https://map.example.com“ width="400" height="300">
This doesn’t work with all browsers. Some browsers show an error (SSL_ERROR_BAD_CERT_DOMAIN
) because the subdomain is not covered by the certificate.
The subdomain contains rather complex content which I wouldn’t know how to built in Typo3, that’s why I used an iframe.
Question:
Is there any way to insert the contents of map.example.com
into the page example.com/map
without purchasing an additional SSL certificate for the subdomain?
Thanks
Pida