美文网首页
phpstudy2018没有访问目录服务权限

phpstudy2018没有访问目录服务权限

作者: wild_w0lf | 来源:发表于2018-06-11 11:20 被阅读0次

    You don't have permission to access /repertory/on this server. 意思是:您没有访问此服务器上的权限。

    通过修改vhosts.conf文件来解决

    打开phpstudy → 其他选项菜单 → 打开配置文件 打开vhost.conf

    phpstudy.PNG

    将原来的

    <VirtualHost _default_:80>
    DocumentRoot "D:\phpStudy\PHPTutorial\WWW"
      <Directory "D:\phpStudy\PHPTutorial\WWW">
        Options -Indexes -FollowSymLinks +ExecCGI
        AllowOverride All
        Order allow,deny
        Allow from all
        Require all granted
      </Directory>
    </VirtualHost>
    
    

    改为

    <VirtualHost _default_:80>
    DocumentRoot "D:\phpStudy\PHPTutorial\WWW"
    ServerName www.gohosts.com
    ServerAlias gohosts.com
      <Directory "D:\phpStudy\PHPTutorial\WWW">
        Options FollowSymLinks ExecCGI
        AllowOverride All
        Order allow,deny
        Allow from all
        Require all granted
      </Directory>
    </VirtualHost>
    
    

    完成

    相关文章

      网友评论

          本文标题:phpstudy2018没有访问目录服务权限

          本文链接:https://www.haomeiwen.com/subject/rfyceftx.html