VirtualHost(開発端末の設定)

httpd.conf
お決まりのバーチャル設定を書く

<VirtualHost *:80>
ServerAdmin has@mint410.com
DocumentRoot "I:/home/test"
ServerAlias test.localhost
ServerName localhost
</VirtualHost>


Windowsの場合以下も必要

http://localhostの場合DNSを読みにいかないので、C:/WINDOWS/system32/drivers/etc/hostに追記する。

127.0.0.1       localhost[ここに追記]
127.0.0.1       localhost test1.localhost test2.localhost test3.localhost

コメントを残す