Quote:
|
Originally Posted by sami
I just found out I can't use the add-on domain feature like I wanted and I have a few domains I need to use. This raises a few questions:
Case 1. I use normal redirecting like mydomain.com --> mydomain.someotherdomain.com
a) Will there be any problems addings my pages to google as mydomain.com?
b) Will google show mydomain.com or mydomain.someotherdomain.com in the search results?
Case 2. I use redirecting with frame so the address mydomain.com stays visible to the user. I understand google doesn't like frames much. How much does this hurt possible rankings?
Case 3. I use some other way so google shows me as mydomain.com in the search results and there are no other problems. Possible?
I use joker.com to manage my domains (except someotherdomain.com) and there lots of options I don't even understand.
Any advice?
|
".com" is Top Level Domain
"2ndleveldomain.com" is 2nd Level Domain
"3rdleveldomain.2ndleveldomain.com" is 3rd Level Domain
Most SEs index and prioritize by 2nd and TLD, so subsequent domains will most likely be ignored.
I don't recommend using frames, but if you plan to use frames, include comments that contain the main textual content within the "framing file".
For redirects, avoid using "refresh" within your code.
Instead, use permanent redirect in your .htaccess or http.conf file for both files and directories. This tells robots that the page or directory has moved. Google is very good at updating permanent moves (my site gets updated every 3 days by Google).
For individual files use the following
------- code starts below this line (no breaks) ---------
redirect 301 /thisoldpage.html
http://mydomain.someotherdomain.com/thisnewpage.html
------- code ends above this line -------
For whole directories use the following
------- code starts below this line (no breaks) ---------
redirect 301 /
http://mydomain.someotherdomain.com
------- code ends above this line -------