08-15-2009, 06:01 PM
|
#2 (permalink)
|
|
The Addict
Join Date: May 2009
Posts: 287
Thanks: 5
|
Quote:
Originally Posted by gamerNL
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>
|
|
|
|