1
我的主機文件。 (Win 7的終極)Windows 7 - XAMPP:vhost保持重定向
127.0.0.1 localhost
127.0.0.1 efmm.local
我的httpd-vhosts.conf(XAMPP 1.7.3)
NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1:80>
DocumentRoot "C:\xampp\htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost efmm.local>
DocumentRoot "C:\xampp\htdocs\EFMM"
ServerName efmm.local
ErrorLog "logs/efmm.localhost-error.log"
CustomLog "logs/efmm.localhost-access.log" combined
<Directory "C:\xampp\htdocs\EFMM">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
問題
當我去efmm.local
,將瀏覽器重定向到localhost/EFMM
。 我也試過<VirtualHost 127.0.0.1:80>
而不是<VirtualHost efmm.local>
,結果相同。