戻る

バーチャルホストの設定

通常はWebサーバやメールサーバを運用するのにドメインの数以上のサーバコンピュータが必要となりますが、バーチャルホストを利用すると1つのサーバコンピュータで複数のドメインを運用することができ、サーバコンピュータの数を減らし運用のコストを下げることができます。

hostsを設定します

hostsの場所

file:///C:/windows/system32/drivers/etc/hosts
# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#	  102.54.94.97	 rhino.acme.com		  # source server
#	   38.25.63.10	 x.acme.com			  # x client host

# localhost name resolution is handled within DNS itself.
#	127.0.0.1	   localhost
#	::1			 localhost


#C:/xampp/htdocsのドキュメントルートに設定するドメイン
127.0.0.1	mainsite.com

#C:/xampp/htdocs/subsite01のサブディレクトリに設定するドメイン
127.0.0.1	subsite01.com

#C:/xampp/htdocs/sibsite02のサブディレクトリに設定するドメイン
127.0.0.1	subsite02.com

httpd.confの一番最後に追記します

設定ファイルの場所

file:///C:/xampp/apache/conf/httpd.conf

NameVirtualHost *:80

<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs"
ServerName mainsite.com
</VirtualHost>

<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/site01"
ServerName subsite01.com
</VirtualHost>

<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/site02"
ServerName subsite02.com
</VirtualHost>
inserted by FC2 system