crear configurar apache xampp port virtualhost httpd.conf

configurar - Apache VirtualHost: cómo ServerName un puerto diferente de 80



virtual host apache ubuntu (2)

En lo que respecta a su navegador, http://test.localhost es http://test.localhost:80 .

Lo que quieres es un redireccionamiento de Apache ...

<VirtualHost 127.0.0.1:80> ServerName test.localhost Redirect / http://test.localhost:81 </VirtualHost>

Yo uso Xampp y quiero test.localhost para ir a 127.0.0.1:81 .

En httpd.conf escribí:

Listen 127.0.0.1:81 NameVirtualHost 127.0.0.1:81 <VirtualHost 127.0.0.1:81> ServerName test.localhost DocumentRoot "d:/_projects/projectx" DirectoryIndex index.php </VirtualHost>

y a windows/system32/drivers/etc/hosts que agregué:

127.0.0.1 test.localhost

Pero http://test.localhost ahora me lleva a 127.0.0.1:80 .

¿Cómo hago para ir a 127.0.0.1:81 ?