<p>You don't have permission to access /phpinfo.php on this server.</p><p>这个问题只有在高版本的php中才出现,5.6及以下都不会出现。</p><p>修改前:</p><pre class="brush:bash;toolbar:false"><VirtualHost*:80>
ServerNamexxx.com
DocumentRootD:/phpStudy/WWW/xxx
<Directory"D:/phpStudy/WWW/xxx">
OptionsIndexesFollowSymLinksMultiViews
AllowOverrideAll
Requirelocal
</Directory>
</VirtualHost></pre><p>修改后:</p><p>#第二个主机</p><pre class="brush:bash;toolbar:false"><VirtualHost*:80>
ServerName192.168.0.xxx
ServerAliasbcclearnning.com
DocumentRootD:\phpStudy\WWW\bcc_service
<Directory"D:\phpStudy\WWW\bcc_service">
OptionsFollowSymLinksExecCGI
AllowOverrideAll
Orderallow,deny
Allowfromall
Requireallgranted
</Directory>
</VirtualHost></pre><p>#如果需要添加更多,继续写就行了!ServerAlias 设置别名</p><p>问题得到解决!</p>