hosted by liquidweb


Go Back   Web Hosting Talk : Web Hosting Main Forums : Web Hosting : Multiple domains
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

Multiple domains

Reply Post New Thread In Web Hosting Subscription
 
Send news tip View All Posts Thread Tools Search this Thread Display Modes
  #1  
Old 06-09-2000, 07:15 PM
Steve
Guest
 
Posts: n/a
Question

Hello!
what companies offer hosting for multiple domains under one account?

-Steve

Reply With Quote


Sponsored Links
  #2  
Old 06-09-2000, 08:26 PM
Moonraker
Guest
 
Posts: n/a
Arrow

<<ADMIN EDIT>>

Reply With Quote
  #3  
Old 06-09-2000, 10:18 PM
Steve
Guest
 
Posts: n/a
Arrow

OK, i don't think my post above was very clear. So let me clear it up

I have a website, and I decided to start another one. I don't want to have to pay for two accounts, so I was wondering if some web hosts let you have two domains (two different sites) under one account.
I am not looking to link two domains (example: mydomain.com and mydomain.net) to the same page.

Does this exist? And which hosts offer it?

Thank You!

Reply With Quote
Sponsored Links
  #4  
Old 06-09-2000, 10:29 PM
Chicken
Guest
 
Posts: n/a
Post

It does exist. Most hosts offer you this either for a one time charge to DNS a domain to a sub folder within the first domain, some also charge a monthly fee in addition to that (usually $3-10/mo). I think it is hard to recommend a host based solely on that though. Pretty common, ask any host you are interested in what the fees are to do this.

Also, you might want to look at that host's cheapest account. Sometimes it is better to get a cheap full account instead of adding the domain like this!

Reply With Quote
  #5  
Old 06-10-2000, 01:48 AM
Steve
Guest
 
Posts: n/a
Lightbulb

Thanks for the info!!

I think that I was looking at a webhost who provided this feature free, a while ago. Maybe it's just my mind playing tricks on me, though.

Does nayone know of a host that provides this feature for free?

-Steve

Reply With Quote
  #6  
Old 06-10-2000, 10:28 AM
Chicken
Guest
 
Posts: n/a
Post

Again, this really shouldn't be the #1 reason you pick a host. While BLAHHOSTING might offer it for free, they also might have terrible customer service, not enough space, not enough bandwidth for your site, etc.

Aside form that, I haven't seen too many hosts offering that for free. You should be able to easily find one that offers it for a one time fee (usually $25) for each domain added. Also, there are hosts that offer multiple domain accounts (5 domains, sometimes with 5 IP addresses), but the price is usally higher, so I am not sure you could call it free exactly.

Post the requirements of your sites (type of site, space, b/w, features needed, etc.), and maybe we can get you going in a direction. Without this, any advice about hosts I (or anyone else) gives you should be ignored

I know your situation, as I have about 20 domains.

Reply With Quote
  #7  
Old 06-10-2000, 02:42 PM
Steve
Guest
 
Posts: n/a
Quote:
Originally posted by Chicken:
I haven't seen too many hosts offering that for free. You should be able to easily find one that offers it for a one time fee (usually $25) for each domain added. Also, there are hosts that offer multiple domain accounts (5 domains, sometimes with 5 IP addresses), but the price is usally higher, so I am not sure you could call it free exactly.

Post the requirements of your sites (type of site, space, b/w, features needed, etc.), and maybe we can get you going in a direction. Without this, any advice about hosts I (or anyone else) gives you should be ignored

I know your situation, as I have about 20 domains.
Well, my current host (phpwebhosting.com)would be perfect, but they do not support this feature.

They offer 200 MB of webspace (well, they say it is unlimited, but we all know that nothing is), which is more than I'm going to be using. 100mb will probably be plenty.

They have 2gigs of bandwith (again, they say it's unlimited). I might go over that, but I highly doubt it. But, my current host would be fine with that since they are more flexible about this.

Right now I only have 2 domains, but I might have more (I kept this in mind when writing the specs above).

How about a service like redirection.net? They redirect your domain for $20.00 a year (including domain registration -you own the domain-). I could have this redirect to a place on my current domain. Is this a good service? Does it slow the loading time?
It sounds great for my situation.

Thanks!!!


Reply With Quote
  #8  
Old 06-10-2000, 03:43 PM
fthosting fthosting is offline
Junior Guru Wannabe
 
Join Date: Apr 2000
Location: west yorkshire england
Posts: 76
Post

<<ADMIN EDIT>>

Otherwise id use futurequest from what ive heard about them.

Reply With Quote
  #9  
Old 06-10-2000, 09:42 PM
Chicken
Guest
 
Posts: n/a
Post

You could also check out myinternet.com (free domain stealth redirection and sometimes only worth free due to downtimes but getting better), and bn3.com which is actually a free email provider, but also could be used for non-stealth redirection.

This all adds another link in the chain, and one more reason for your site to be inaccessible, but... obviously it is better to do this at your host and save the step.

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

If your web hosting account runs a Unix system with Apache server, you have your own IP address, and your web host has wild card domains enabled then you may be able to use .htaccess to run multiple domains on your account. .htaccess files will henceforth be called HTACCESS in this post.

For example, if you are running firstdomain.com as your main account and want to also run seconddomain.com on your account you could use something like the following in your HTACCESS:

Code Example

Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^[^.]+\. firstdomain\.com [NC]
RewriteCond %{HTTP_HOST} ^www\.([^.]+)\.com [NC]
RewriteCond %{REQUEST_URI} ! seconddomain [NC]
RewriteRule ^(.*) %1/$1 [L] 

RewriteCond %{HTTP_HOST} ! firstdomain\.com [NC]
RewriteCond %{HTTP_HOST} ^([^.]+)\.com [NC]
RewriteCond %{REQUEST_URI} !seconddomain [NC]
RewriteRule ^(.*) %1/$1 [L]
Your new “document root” for seconddomain.com will public_html/seconddomain. You will need to point seconddomain.com to your IP address using a DNS service such as myinternet.com.

All HTACCESS rules from your main directory are followed recursively into the secondary domain folders; so your error document handlers may work incorrectly with the secondary domain. However, you can define new rules under an independent HTACCESS in the secondary directory.

Problems

Case Sensitive

The domain name will be case sensitive, so SecondDomain.com will not work. However, you can fix this problem by placing redirects for the most common case spellings of your domain. For example:

Code:
Redirect /SecondDomain http://www.seconddomain.com 
Redirect /ATLANTAWEBHOST http://www.  seconddomain.com
Redirect /Seconddomainhttp://www.seconddomain.com
Redirect /secondDomain http://www.seconddomain.com
Directory Listing

If a forward slash is not specified at the end of a directory that does not have a default document (index.html and etc.), it will be resolved to firstdomain.com/seconddomain/directory/. I have not been able to find a solution to this that uses an account level HTACCESS.


Warnings

The Apache Mod Rewrite engine is EXTREAMLY complex. I would not recommend anyone who is not a programmer try to figure it out. The rewrite engine can also use a lot of resources processing requests, if your second obtains a large number of visitors, you should get a separate account for it or your web host might shut your site down.

Please use this information at your own risk. My staff and I will not be able to provide support for you. Even our company does not officially allow this technique on our servers, but we do not prohibit it either.

USE THIS INFORMATION AT YOUR OWN RISK

Best regards,
Frank Rietta

--------------------
AtlantaWebhost.com – Web Solutions that Work
Phone: 770-623-2059
Fax: 770-495-0914
E-Mail: websolutions@rietta.com


[This message has been edited by Rietta Solutions (edited 06-11-2000).]

Reply With Quote
  #11  
Old 06-11-2000, 01:15 AM
Steve
Guest
 
Posts: n/a
Red face

Yikes!
That's looking a little risky!

I asked my host if the support multiple domains, so I probably have a better chance of getting caught. They said that they used to, but don't anymore, because it caused problems. So, I'm not gonna risk it.

But, thanks!

Reply With Quote
  #12  
Old 06-12-2000, 09:34 AM
Genady Perchenko Genady Perchenko is offline
New Member
 
Join Date: Apr 2000
Location: Nashua, NH, USA
Posts: 3
Post

<<ADMIN EDIT>>

Reply With Quote
  #13  
Old 12-29-2000, 07:31 PM
phpwebhosting.com phpwebhosting.com is offline
Junior Guru Wannabe
 
Join Date: Dec 2000
Posts: 54
I work for phpwebhosting.com and I noticed that Steve mentioned that we offer unlimited diskspace and transfer. This is not true. We have never offered unlimited anything and any hosting company that says they do is lying.

We used to offer unmetered diskspace (we have had to change this as of late) and we still offer unmetered transfer. This just means that while we do have a general limit on usage, the limits are not hard and we do not charge extra for going the limit.

Best regards,

Karen
Sales Department
phpwebhosting.com

Reply With Quote
  #14  
Old 12-29-2000, 08:34 PM
Chicken Chicken is offline
Web Hosting Master
 
Join Date: Jun 2000
Location: Southern California
Posts: 12,121
Quote:
Originally posted by phpwebhosting.com
...and we still offer unmetered transfer. This just means that while we do have a general limit on usage, the limits are not hard and we do not charge extra for going the limit.
Karen, thanks for the errrrrr clarification? I'm still not sure what that means, but so long as you guys do.

__________________
HostHideout.com - Where professionals discuss web hosting.

• Chicken

Reply With Quote
  #15  
Old 12-29-2000, 08:40 PM
cbaker17 cbaker17 is offline
Web Hosting Master
 
Join Date: Jun 2000
Location: Wichita, Ks, USA
Posts: 1,984
too the company

I would stay away from any company that advertises in a non advertising forum and who wont even bother to register or answer a persons question. Just my 2 cents

__________________
affordablecolo.com carrier grade colocation at a affordable price!
Charles Baker - Company Operations
1-866-316-HOST

Reply With Quote
Reply

Related posts from TheWhir.com
Title Type Date Posted
50a15ecd-fab4-4084-be23-53a245a799a0 Listing 2013-03-05 18:23:24
Web Host ASEOHosting Acquires IPv4 Address Space for Multiple IP Hosting Web Hosting News 2011-12-29 16:31:34
Tucows Adds 100-Plus new Domain Extensions to OpenSRS System Web Hosting News 2011-12-22 18:29:09
Web Host 1&1 Launches Domain Registration Mobile App Web Hosting News 2011-11-02 21:05:55
New on WHIR TV – Karla Hakansson of Verisign Talks .com and .net Branding Blog 2011-08-25 20:23:37


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?