I just created a subdomain ony my domain named:
profile.cv.hsoto.me
However, when I try to access it, I get a warning:
I'm not sure how to fix this. My .htaccess file is as follows:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_NAME} ^(www\.)?moonlightbeachclub\.com$
RewriteRule ^ - [F]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# END WordPress
A friend of mine configured this for me, so I do not really know much about if there's a problem there. Is there a way to use my main SSL on my subdomains as well?
Any help would be appreciated!