hosted by liquidweb


Go Back   Web Hosting Talk : Web Hosting Main Forums : Web Hosting : Need help finding host that supports domain stacking
Reply

Web Hosting Discussions on all aspects of web hosting including past experiences (both negative and positive), choosing a host, questions and answers, and other related subjects. If your service is unavailable, please click here.
Forum Jump

Need help finding host that supports domain stacking

Reply Post New Thread In Web Hosting Subscription
 
Send news tip View All Posts Thread Tools Search this Thread Display Modes
  #1  
Old 04-14-2000, 12:06 AM
Gordon Gordon is offline
Junior Guru Wannabe
 
Join Date: Mar 2000
Posts: 48
Lightbulb

IMOP - The best is to get each account for each domain to prevent Hosting companies to shut down your account. They can just say X domain of yours are using too much resources,etc and thats it!


Reply With Quote


Sponsored Links
  #2  
Old 04-14-2000, 08:04 AM
GreatBigGnu GreatBigGnu is offline
New Member
 
Join Date: Apr 2000
Posts: 2
Post

Hi there,

I'm currently using FutureQuest to host some of my sites, and use their domain stacking option quite extensively (the ability to have multiple sites with their own domains running on a single account). The problem is that they charge a $25 setup fee for each new domain, which I suppose is fair, but I'd rather not pay. Are there any RELIABLE hosts offering this, that do not charge or charge only a minimal setup fee for the subsequent domains?

PS. Each domain needs to have it's own email (i.e. whatever@thatdomain.com)

Thanks!

Reply With Quote
  #3  
Old 04-14-2000, 08:58 AM
Rietta Solutions Rietta Solutions is offline
Newbie
 
Join Date: Mar 2000
Location: Duluth, GA, USA
Posts: 26
Post

I do not know of many web hosts that would offer the services that you described. The fact that FutureQuest does offer the option for $25 seams like a great deal. While it is great for customers to be able to host multiple domains on a single account, most web hosts do not like to offer that option. If a client is hosting four web sites on a single account, the web host is carrying the load of four sites with the financial income of only one site.

Best regards,
Frank Rietta

Rietta Solutions
Internet: http://web.rietta.com
E-Mail: websolutions@rietta.com
Phone: 770-623-2059
Fax: 770-495-0914

Reply With Quote
Sponsored Links
  #4  
Old 04-14-2000, 09:46 AM
Genady Perchenko
Guest
 
Posts: n/a
Post

My company offers the same option with our reseller account. However, while we do not charge any set up fee, we do charge $5 extra per month for each domain you host with us after initial 2 domains hosted. So basically you paying $60 per year for each domain which is covers additional traffic cost.

I think that your best bet might be staying with FutureQuest. From what I heard they have one of the best reputation in the industry and gambling your multiple websites on somebody else just to save a dollar might not be the best option for you.

Genady Perchenko
AnGen Computing
gperchenko@angen.net
http;//www.angen.net

Reply With Quote
  #5  
Old 04-14-2000, 03:05 PM
John
Guest
 
Posts: n/a
Post

My company Symbiosis.Nu might be able to help you out. We offer accounts with multi-domain support. Our web site is http://www.symbiosis.nu/

Reply With Quote
  #6  
Old 04-14-2000, 06:58 PM
Brian Farkas Brian Farkas is offline
WHT Addict
 
Join Date: Mar 2000
Posts: 166
Post

One possibility for you might be to use a service such as myinternet.com, then use a CGI script to redirect other domains to subdirectories. This way, you can stay at futurequest, who seems to have a very good reputation, and get out of paying the $25.

------------------
Web Hosting - Design - Promotion - Programming
InfoStar Web Design - Click Here

Reply With Quote
  #7  
Old 04-14-2000, 08:56 PM
John
Guest
 
Posts: n/a
Exclamation

The use of a redirect CGI will work, so long as you have a unique ip.

Reply With Quote
  #8  
Old 04-14-2000, 11:06 PM
Rietta Solutions Rietta Solutions is offline
Newbie
 
Join Date: Mar 2000
Location: Duluth, GA, USA
Posts: 26
Post

It is also possible to do that through the use of .htaccess.

Reply With Quote
  #9  
Old 04-15-2000, 06:57 PM
inwks inwks is offline
Junior Guru
 
Join Date: Sep 2000
Location: London, UK
Posts: 214
Post

The MyDomain product as MyInternet is free (u just pay the InterNIC charges for your domains). It gives u the functionality to redirect the domain to another URL.

e.g. www.mynewdomain.com - www.mydomain.com/anylocation

If you want to make it look like a completely separate site, you would need a dedicated IP address for your host, then point the www.mynewdomain.com to the IP address at MyDomain. On your server, the default page would have to do a calculation to work out where to go. For example, index.asp would work out what content to display based on the requested domain name.

Reply With Quote
  #10  
Old 04-15-2000, 10:33 PM
Rietta Solutions Rietta Solutions is offline
Newbie
 
Join Date: Mar 2000
Location: Duluth, GA, USA
Posts: 26
Post

Here is one example of using an .htaccess file to simulate a second domain:

Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^[^.]+\.maindomain\.com
RewriteCond %{HTTP_HOST} ^www\.([^.]+)\.com
RewriteCond %{REQUEST_URI} !seconddomain
RewriteRule   ^(.*)           %1/$1/                  [L]
RewriteCond %{HTTP_HOST} !maindomain\.com
RewriteCond %{HTTP_HOST} ^([^.]+)\.com
RewriteCond %{REQUEST_URI} !seconddomain
RewriteRule   ^(.*)           %1/$1/                  [L]
RewriteCond   %{HTTP_HOST} !^www.maindomain.com$           [NC]
RewriteCond   %{HTTP_HOST} !^maindomain.com$  	        [NC]
RewriteCond   %{HTTP_HOST} !^www\.[^.]+\.maindomain.com$      [NC]
RewriteCond   %{HTTP_HOST} !^[^.]+\.maindomain.com$          [NC]
RewriteCond   %{HTTP_HOST} !^www.seconddomain.com$           [NC]
RewriteCond   %{HTTP_HOST} !^seconddomain.com$               [NC]
RewriteRule   ^(.+)        %{HTTP_HOST}$1               [C]
[This message has been edited by Rietta Solutions (edited 04-15-2000).]

Reply With Quote
  #11  
Old 04-16-2000, 02:13 PM
Jerry
Guest
 
Posts: n/a
Thumbs down

What ever you do stay away from http://www.symbiosis.nu/ I asked him for references once and he refused to provide those to me. I have heard horror stories about this company on allot of other boards and form what I have heard he has been kicked off of boards in the past. So do yourself a big favor and stay away from that clown.

Reply With Quote
  #12  
Old 04-17-2000, 05:40 AM
GreatBigGnu GreatBigGnu is offline
New Member
 
Join Date: Apr 2000
Posts: 2
Talking

Thank you very much for all your replies.

Does anyone know of any web site or other resource that might describe the process of setting up this .htaccess file (for dummies as it were)?

Is the .htaccess file similar to the index.asp file described in one of the replies?

Thanks again for your help!

Reply With Quote
  #13  
Old 04-17-2000, 09:36 AM
John
Guest
 
Posts: n/a
Post

Jerry, I have realized who you are, you are Dave of JRC Systems. Bummer, I searched on Host Search.com's message board, and noticed the ips were very very close.

Reply With Quote
  #14  
Old 04-17-2000, 10:59 AM
fthosting fthosting is offline
Junior Guru Wannabe
 
Join Date: Apr 2000
Location: west yorkshire england
Posts: 76
Post

This is not quite what you might be looking for but maybe i can be of help. This is not yet advertised on our site. We can host 10 domains for you like this. You choose one of our paid hosting solutions maybe the starter package at £4.95 a month and pay for this account on a yearly basis and well let you host upto 10 domains for £30 a year all getting the saem features as your primary account and we can also set them upto to cloak or redirect to your primary domain. So technically you would be paying £90/$144 a year. We also if needed will charge £5 per 5 domains after 10 so it becomes a £1 a domain. Maybe not what you are looking for but an option if you want more details email me.

Reply With Quote
  #15  
Old 04-17-2000, 11:04 AM
fthosting fthosting is offline
Junior Guru Wannabe
 
Join Date: Apr 2000
Location: west yorkshire england
Posts: 76
Post

Also can you kep personal bikkering to a minimum it does make either of your comapny's look big. Infact if i saw a personal bickering match between two hosts i would not consider hosting with them just my 25p

Quote:
Originally posted by John:
Jerry, I have realized who you are, you are Dave of JRC Systems. Bummer, I searched on Host Search.com's message board, and noticed the ips were very very close.


------------------
Signing off for now Eddie

Reply With Quote
Reply

Related posts from TheWhir.com
Title Type Date Posted
Host Europe Group Launches Domain Management Service for SMEs Web Hosting News 2013-04-24 14:31:28
Go Daddy Supports Canadian Businesses with French-Character .CA Domain Names Web Hosting News 2013-01-14 10:59:11
Host Europe Plans to Expand Domain Services with Mesh Digital Acquisition Web Hosting News 2012-05-16 12:06:23
Host Europe Acquires Spanish Domain Registrar and Web Host RedCoruna Web Hosting News 2012-01-23 09:56:35
Web Host Go Daddy Faces More SOPA Backlash with Dump Day Web Hosting News 2011-12-29 15:55:41


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes
Postbit Selector

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump
Login:
Log in with your username and password
Username:
Password:



Forgot Password?
Advertisement:
Web Hosting News:



 

X

Welcome to WebHostingTalk.com

Create your username to jump into the discussion!

WebHostingTalk.com is the largest, most influentual web hosting community on the Internet. Join us by filling in the form below.


(4 digit year)

Already a member?