httpd-vhosts.conf
ファイルを次のように構成しました。
<VirtualHost seg.localhost:81>
ServerAdmin my@email.com
DocumentRoot "D:\path\to\public_html"
ServerName http://seg.localhost
ServerAlias http://seg.localhost
ErrorLog "logs/seg.log"
CustomLog "logs/seg" common
<directory "D:\path\to\public_html">
Options Indexes FollowSymLinks
AllowOverride all
Order Deny,Allow
Deny from all
Allow from all
</directory>
</VirtualHost>
しかしhttp://localhost:81/
、ブラウザにアクセスすると、まだそのフォルダにアクセスしています。サブドメインが無視されるのはなぜですか?