CrucesMpire Posted April 26, 2007 Share Posted April 26, 2007 (edited) Hello everyone. I have a Windows 2003 Server with Apache, PHP, MySQL installed. I also use a free DNS which is www.no-ip.com . My question is that I run 1 website for my gaming clan website. The problem is that my brother plays another game and is in a clan, but wants his own website.My url is http://thempire.sytes.netCan I also have http://thedugg.sytes.net on the same server. How would I setup both with different folders with the index pages in them.Edit Update: If I setup 2 DNS in Windows Server 2003 can this work as well Edited April 26, 2007 by CrucesMpire Link to comment Share on other sites More sharing options...
phkninja Posted April 26, 2007 Share Posted April 26, 2007 (edited) this is set up with subdomains. I have never configured them but here are some links that might helpApache SiteEasy Explainationfrom cross referencing I think this is what you needin httpd.conf<VirtualHost *:80> ServerName thempire.sytes.net DocumentRoot /www</VirtualHost><VirtualHost *:80> ServerName thedugg.sytes.net/ DocumentRoot /www/thedugg</VirtualHost>so the main site is in thge www directory, and thedugg is in www/thedugg as a sub folder Edited April 26, 2007 by phkninja Link to comment Share on other sites More sharing options...
jcarle Posted April 26, 2007 Share Posted April 26, 2007 What you want is not sub-domains. What you need to do is use the concept of virtual hosting. It allows you to host more then one domain using the same physical machine.http://httpd.apache.org/docs/1.3/vhosts/ Link to comment Share on other sites More sharing options...
phkninja Posted April 26, 2007 Share Posted April 26, 2007 at jcarle, look at the first link in my post *lol* Link to comment Share on other sites More sharing options...
jcarle Posted April 26, 2007 Share Posted April 26, 2007 at jcarle, look at the first link in my post *lol*Yea, sorry about that. I read your post but I didn't follow your links. My bad. Link to comment Share on other sites More sharing options...
CrucesMpire Posted April 27, 2007 Author Share Posted April 27, 2007 Ok I have xamp and have httpd.conf open. I see where it has my default directory which looks like DocumentRoot "/xammplite/htdocs"where would I put the virtual Directories. Do I erase what I showed you and setup the Virtual Directory like you guys showed me.Like this ............<VirtualHost *:80> ServerName thempire.sytes.net DocumentRoot /xammplite/htdocs</VirtualHost><VirtualHost *:80> ServerName thedugg.sytes.net/ DocumentRoot /xammplite/htdocs/thedugg</VirtualHost> Link to comment Share on other sites More sharing options...
CrucesMpire Posted April 27, 2007 Author Share Posted April 27, 2007 Thanks everyone. I figured it out.. http://thempire.sytes.nethttp://thempire.serveblog.netBoth on same server thanks Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now