View Single Post
Old 08-15-2009, 06:01 PM   #2 (permalink)
adamdecaf
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Quote:
Originally Posted by gamerNL View Post
hi everybody who's reading this,

can anyone tell me and explain me how to make a sub domain
by using xampp server? i do have a domain bi0hazard.tk
thats the domain to my site but i want some sub domains called
like: games.bi0hazard.tk, server.bi0hazard.tk, forum.bi0hazard.tk
please can you help me with this. it will help very much.

thanks for reading

dennis kluytmans,
Use the apache virtual hosts.

Example...

Code:
<VirtualHost *:80>
    ServerAdmin first.last@sub.domain.tld
    DocumentRoot "C:/path/to/htdocs"
    ServerName localhost
    ServerAlias localhost
    ErrorLog "logs/error.log"
    CustomLog "logs/access.log" common
</VirtualHost>
__________________
My Site
adamdecaf is offline  
Reply With Quote