• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Website 2x

Lbtg

Intermediate OT User
Joined
Nov 22, 2008
Messages
2,324
Reaction score
136
Hello Otlanders i want ask how i can make 2 website on same ip addres ? please help rep++ :thumbup:

join use :D
 
but i dont understand realy good how to make it . so meyby you can help me

sorry i are nobish on web..
 
Last edited:
I suppose that you're running Windows. Go then to xampp directory and search for httpd-vhosts.conf file and paste at bottom:

Code:
<VirtualHost *:80>
DocumentRoot D:/pathtoyourdomain1here
ServerName youdomain1.com
</VirtualHost>

<VirtualHost *:80>
DocumentRoot D:/pathtoyourdomain2here
ServerName youdomain2.com
</VirtualHost>
 
Last edited:
apache2 or something like this, try searching in subdirectories. If you can't find it, paste it in apache2.conf or httpd.conf
 
Back
Top