Just a thought..if my ssl certificate was purchased for abc.com, can I redirect my parked domain xyz.com so it will say abc.com in the address bar?
In htaccess, I think I can have this:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^xyz.com [NC]
RewriteRule ^(.*)$
http://www.abc.com/$1 [L,R=301]
I believe this would take care of the situation if someone enters xyz.com in the address bar. Is there a way to write this for
www.xyz.com?Also, if I want
www.abc.com to redirect to
www.abc.com/store - can I use the above code but add /store? Or would I need to do the following type of redirect:
RewriteCond %{HTTP_HOST} ^(www\.)?abc.com$
RewriteCond %{REQUEST_URI} !store/
RewriteRule ^(.*)$ store/$1
I've been researching this online and Im not sure I completely understand all the coding. Can someone help me?
Thanks!