仮想ドメイン名を設定します
1. hosts ファイル、ディレクトリ: C:WindowsSystem32driversetc を変更します。たとえば、
localhost doma.com
<Directory /> AllowOverride none Require all denied </Directory>
<Directory /> #AllowOverride none #Require all denied AllowOverride all Order deny,allow Allow from all </Directory>
<VirtualHost *:80> ServerAdmin doma.com DocumentRoot "c:/wamp/www/doma" ServerName doma.com ServerAlias www.dummy-host.example.com ErrorLog "logs/dummy-host.example.com-error.log" CustomLog "logs/dummy-host.example.com-access.log" common </VirtualHost>
403 Forbidden You don't have permission to access / on this server
404 Forbidden The requested URL was not found on this server
https-vhosts.cong ファイルが必要です。すべての
<VirtualHost *:80> ... </VirtualHost>
<Directory /> #AllowOverride none #Require all denied Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Order deny,allow Allow from all </Directory>
。
上記では、関連する側面を含め、Apache 仮想ドメイン名の設定を紹介しました。PHP チュートリアルに興味のある友人に役立つことを願っています。