I am trying to mask https://mydomain.com/free to www.myotherdomain.com so that when www.myotherdomain.com or myotherdomain.com is entered it loads the page at mydomain.com but shows myotherdomain.com in the address bar as well as keeps a ssl connection through mydomain.com without having to use an iframe, is this possible, I am fairly new to working with .htaccess and mod_rewrite my .htaccess code is as follows
# BEGIN WordPress
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
RewriteCond %{HTTP_HOST} !^javitaonlinecafe.com$ [NC]
RewriteRule ^(.*)$ http://freejavitacoffee.com [R=301,L]
# END WordPress