I currently have 2 domains that access to the same folder on my server: metrikstudios.com and ziced.com.
I want the users that enter through http://metrikstudios.com be redirected to https://metrikstudios.com and the users that enter through http://ziced.com don’t be redirected to https://ziced.com.
I currently have this on my .htaccess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
Thanks
You could simply add another RewriteCond to check if the host is metrikstudios.com
and it should look like this: