ホームページ >バックエンド開発 >PHPチュートリアル >Apache を使用するためのヒント
1. マルチサイト構成:
1. httpd.conf を開き、仮想ディレクトリを設定して有効にします:
<Directory /> options FollowSymLinks AllowOverride all Allow from all #Require all denied </Directory>
3.
Include conf/extra/httpd-vhosts.conf,
<pre name="code" class="html"><VirtualHost *:80> ServerAdmin webmaster@dummy-host.example.com DocumentRoot "/var/www/cloud_whirlpool_china" ServerName cloud.whirlpool-china.com ServerAlias cloud.whirlpool-china.com ErrorLog "logs/cloud.whirlpool-china.com-error_log" CustomLog "logs/cloud.whirlpool-china.com-access_log" common </VirtualHost>httpd.conf ファイルで直接 VirtualHost を設定することもできます。
2. リモートアクセス許可の設定:
以上、Apache を使用するためのヒントを内容も含めて紹介しました。PHP チュートリアルに興味のある友人の参考になれば幸いです。