First of all, svendsensmarine.com and svendsensgillstore.com are not subdomains. They are
add-on domains. Now, are you on the new cPanel or the old one? I know that the old cPanel had terrible problems with redirection for subdomains and add-on domains. You had to manually write the redirection in
.htaccess. I don't know if the situation is any better in the new one. Anyway, it's simple enough to do the redirection yourself.
This is for redirecting all visitors coming into svendsensgillstore.com to svendsensmarine.com. Note that your visitors will see that they are now in svendsensmarine.com. Saved (bookmarked) links to deep inside the old svendsensgillstore.com will probably produce errors (404s), so if you want to only redirect certain URLs, it can be done, but it's extra work.In /home/YOURACCOUNT/public_html/svendsensgillstore/.htaccess (assuming that's the right path for
http://svendsensgillstore.com/.htaccess), create the file if it doesn't exist. If it does exist, remove any existing redirection and add this:
RewriteEngine On
RewriteRule ^(.*)$ http://www.svendsensmarine.com/$1 [R=301]
Omit the www. if you need to. There's a possibility if it doesn't work that you may have to change the pattern from
^(.*)$ to
^svendsensgillstore/?(.*)$.