具体的な方法は以下のとおりです:
1.「仮想ディレクトリ設定ファイル」httpd-vhosts.conf
ファイルパス:\を開きます。 wamp\bin\ apache\apache2.4.9\conf\extra\httpd-vhosts.conf
次の構成を
# Virtual hosts # Include conf/extra/httpd-vhosts.conf
から
# Virtual hosts Include conf/extra/httpd-vhosts.conf# に変更します。 ##2、仮想ディレクトリをアクセス可能に設定します
<Directory /> AllowOverride none Require all denied </Directory>は、次のように変更されます:
<Directory /> AllowOverride none </Directory>3. 仮想ディレクトリ ファイル パスを追加します: \wamp\bin\apache\apache2.4.9\conf \extra\httpd-vhosts.conf仮想ディレクトリの追加
<VirtualHost *:80> ServerAdmin webmaster@web.shop.com DocumentRoot "D:/_HelloWorld/01_MyProjects/06_PHP/01_Web/Product/Source/Shop" ServerName web.shop.com ErrorLog "logs/web.shop.com-error.log" CustomLog "logs/web.shop.com-access.log" common </VirtualHost>4.apacheの再起動
以上がApache仮想ディレクトリの設定方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。