当前位置: 首页 > 工具软件 > php-useragent > 使用案例 >

phpstudy You don't have permission to access /phpinfo.php on this server.

翟黎明
2023-12-01

You don’t have permission to access /phpinfo.php on this server.
这个问题只有在高版本的php中才出现,5.6及以下都不会出现。
修改前:

<VirtualHost *:80>
    ServerName xxx.com
    DocumentRoot D:/phpStudy/WWW/xxx
    <Directory  "D:/phpStudy/WWW/xxx">
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Require local
    </Directory>
</VirtualHost>

修改后:

#第二个主机
<VirtualHost *:80>
    ServerName 192.168.0.xxx
    ServerAlias bcclearnning.com
    DocumentRoot D:\phpStudy\WWW\bcc_service
    <Directory  "D:\phpStudy\WWW\bcc_service">
        Options FollowSymLinks ExecCGI  
        AllowOverride All  
        Order allow,deny  
        Allow from all  
        Require all granted 
    </Directory>
</VirtualHost>
#如果需要添加更多,继续写就行了!ServerAlias 设置别名

问题得到解决!

 类似资料:

相关阅读

相关文章

相关问答