Home  >  Q&A  >  body text

Excuse me, what is this question,

What is the problem?

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

phpcn_u108134phpcn_u1081342421 days ago936

reply all(1)I'll reply

  • 路过

    路过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>

    reply
    0
  • Cancelreply