7
Ok that makes sense on where to put the file.
So...and I am going to show my total ignorance now....
For the rewrite area: I would just replace my domain info into that script? Since I only have one instance that I am concerned about I could leave out the second part of the RewriteCond script?
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.mysite123.com$
[OR]
RewriteCond %{HTTP_HOST} ^www.otherdomain.ca$ RewriteRule .*
http://mysite123.com/$1 [R=301,L]
Spaced only for illustration purposes. I am also assuming that [R=301,L] is nothing I technically need to be worried about since it is probably over my head and just part of the script
This would in essence make anyone that types "www.mysite123.com" be rewritten to "mysite123.com" which would go well with how the XOOPS script and links are set up on my site - as well as all the referrers/cookies should work (at least in theory if I understand.)
Thanks so much for the help!!