WAMP 403 Forbidden message on Windows 7

后端 未结 26 1615
抹茶落季
抹茶落季 2020-11-27 12:51

I have installed WAMP version 2.1 on my windows 7 machine. When i browse to localhost in my browser, the WAMP server page is visible.

But when I browse to my IP in m

26条回答
  •  -上瘾入骨i
    2020-11-27 13:26

    Also on Apache 2,4 you may need to add this to the directory directive in conf, in case you decided to include httpd-vhosts.conf.

    By default you can install wamp in C:\ but still choose to deploy your web development in another location.

    To do this inside the vhosts.conf you can add this directive:

    
        Options Indexes FollowSymLinks MultiViews
        DirectoryIndex index.php
        AllowOverride All
      
        Require local
      
      
        Order Deny,Allow
        Allow from all
        Allow from localhost ::1 127.0.0.1
      
    
    

提交回复
热议问题