¿Qué servidor estás usando?
Con Apache sería así:
Código Configuración apache:
Ver original# Ensure that Apache listens on port 80
Listen 80
<VirtualHost *:80>
DocumentRoot /www/example1
ServerName www.example.com
# Other directives here
</VirtualHost>
<VirtualHost *:80>
DocumentRoot /www/example2
ServerName www.example.org
# Other directives here
</VirtualHost>
Puedes obtener más información aquí:
https://httpd.apache.org/docs/2.4/vhosts/examples.html