搜索

首页  >  问答  >  正文

请问这是什么问题,

请问这是什么问题,

You don't have permission to access /install/index.php on this server

phpcn_u108134phpcn_u1081342423 天前942

全部回复(1)我来回复

  • 路过

    路过2018-03-28 08:24:26

    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Satisfy all
    </Directory>
    修改成
    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
    #    Deny from all
        Allow from all
    #允许所有访问
        Satisfy all
    </Directory>
    第二处:找到:
    #   onlineoffline tag - don't remove
        Order Deny,Allow
        Deny from all
        Allow from 127.0.0.1
    </Directory>
    修改成:
    #   onlineoffline tag - don't remove
        Order Deny,Allow
    #    Deny from all
    #  Allow from 127.0.0.1
        Allow from all
    </Directory>

    回复
    0
  • 取消回复