ホストしている各サイト内に、ログ ファイルと cgi ファイル用のディレクトリを作成する必要があります。以下の httpd-vhosts.conf ファイルのコードを使用して XAMPP の Apache サーバーを実行すると、次のメッセージが表示されます。
1:23:14 PM [Apache] Error: Apache shutdown unexpectedly.
1:23:14 PM [Apache] This may be due to a blocked port, missing dependencies,
1:23:14 PM [Apache] improper privileges, a crash, or a shutdown by another method.
1:23:14 PM [Apache] Press the Logs button to view error logs and check
1:23:14 PM [Apache] the Windows Event Viewer for more clues
1:23:14 PM [Apache] If you need more help, copy and post this
1:23:14 PM [Apache] entire log window on the forums
これは私の httpd-vhosts.conf ファイルの外観です
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/sitea"
ServerName sitea.com
ServerAlias www.sitea.com
<Directory "C:/xampp/htdocs/sitea/logs">
Options Indexes IncludesNOEXEC FollowSymLinks
allow from all
</Directory>
<Directory "C:/xampp/htdocs/sitea/cgi-bin">
Options Indexes IncludesNOEXEC FollowSymLinks
allow from all
</Directory>
<Directory "C:/xampp/htdocs/sitea/html">
Options Indexes IncludesNOEXEC FollowSymLinks
allow from all
</Directory>
ErrorLog "C:/xampp/htdocs/sitea/logs/error_log"
CustomLog "C:/xampp/htdocs/cms/logs/access_log" combined
ScriptAlias "/cgi-bin/" "C:/xampp/htdocs/sitea/cgi-bin/"
</VirtualHost>