windows xp - styde - Configuración de hosts virtuales para XAMPP en Windows
virtual host xampp mac (1)
XAMPP para Windows 1.8.2 PHP 5.4, sistema operativo: Windows XP
Estoy usando nombre de usuario y passowrd en XAMPP
c: / windows / system32 / drivers / etc / hosts 127.0.0.1 hindustans.local 127.0.0.1 read.local
E: / My Projects / wesites / read index.html
httpd-vhosts.conf
<Directory "E:/My Projects/wesites/read">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "E:/My Projects/wesites/read"
ServerName read
Options +Indexes
</VirtualHost>
read.local funciona bien con c: / xampp / htdocs Pero read.local no funciona con E: / My Projects / wesites / read / index.html
Quiero brevemente ejecutar mi proyecto desde E: / My Projects / wesites / read
Necesitas hacer coincidir el ServerName con la dirección que tienes en los hosts y darle permiso
<VirtualHost *:80> DocumentRoot "E:/My Projects/wesites/read" ServerName read.local <Directory "E:/My Projects/wesites/read" > Options Indexes FollowSymLinks Includes ExecCGI Order allow,deny Allow from all </Directory> </VirtualHost>
luego intente acceder al sitio en read.local.
Más información aquí