Welcome to the JaguarPC Community
JaguarPC
Sales: (888) 338-5261
Support: (888)-551-3050
Results 1 to 4 of 4

This is a discussion on Multihosting and Aletia Domains in the Shared & Semi-Dedicated forum
Hello, I'm interested in "multihosting" 3 or 4 sites on my primary Gigadeal account. Currently, I own a few domains at aletianic.com and have them ...

  1. #1
    Brian
    Join Date
    Apr 2009
    Posts
    5

    Question Multihosting and Aletia Domains

    Hello,
    I'm interested in "multihosting" 3 or 4 sites on my primary Gigadeal account. Currently, I own a few domains at aletianic.com and have them setup as URL Frame Redirects to folders on my website. This works for the direct visitor (they see the right URL for the folder content) but doesn't convince google. In the search results Google shows my primary domain in the URL (ie: www.primarydomain.com/subfolder/index.htm as opposed to the domain affiliated with the content.

    I was hoping to figure out a way to host four or five sites in my 1 Gigadeal shared hosting account which the search engines actually see as separate sites. Is this possible?

    Thanks for any help!
    Brian:
    Last edited by mistercheezit; 04-07-2009 at 05:22 PM.

  2. #2
    Ron
    Ron is offline
    Loyal Client
    Join Date
    Aug 2002
    Posts
    7,307
    Yeah, multihosting is exactly what you want to do with your CPanel. You want to multihost your additional aletianic domains in your cpanel (this will create the subdirectories if they don't already exist, and SHOULD use them if they already do). You will then set your aletianic domains to use the jpc nameservers instead of aletianic's and it will all just work.

    If you run into trouble, support will be able to help you lickety split. They do this stuff with domains and dns all the time.
    Good luck

  3. #3
    Brian
    Join Date
    Apr 2009
    Posts
    5
    Gosh, thanks for the quick reply! I'll try that out.

  4. #4
    Ron
    Ron is offline
    Loyal Client
    Join Date
    Aug 2002
    Posts
    7,307
    You're also probably going to need to redirect the search engines back to your preferred URL, perhaps something like this in your .htaccess file:

    Code:
    RewriteCond %{REQUEST_URI} ^/subfolder/$ [NC]
    RewriteRule ^(.*)$         http://www.yournewdomain.com/$1 [L,R=301]
    This says "If the REQUEST_URI is for your old domain and it starts with '/subfolder' [case insensitive], then redirect the user's browser (and/or search engine crawler) to your new domain appending to the url everything that came after the dollar sign in the first line. This is the last rule you should follow for this request, and tell the browser/crawler that this is a permanent redirect."

    Then you need to test all the different permutations that the search engines have been using to get to your site, and add a line for each of them that aren't picked up by the changes you've already made to your .htaccess file.

    When you encounter that situation, your .htaccess file might look like this:
    Code:
    RewriteCond %{REQUEST_URI} ^/subfolder/$ [NC,OR]
    RewriteCond %{REQUEST_URI} ^/subfolder/someprogram(.*)$ [NC]
    RewriteRule ^(.*)$         http://www.yournewdomain.com/$1 [L,R=301]
    The second line was added, and the "OR" condition was added to the first.

    But let's cross that second bridge when/if you get there.
    Last edited by Ron; 04-07-2009 at 06:19 PM.
    Good luck

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •