WAMP forbidden error on windows 8

偶尔善良 提交于 2019-11-29 18:37:14

The reason why it happens is IPV6. Windows 8 is by default an IPV6-first Operating System. How? Well just go to command-prompt and run the command

ping localhost  

You will be getting response from ::1 i.e. the loopback address for IPV6. When you try to connect to the server it uses the port 80 along with IPV6 to locate it.

Check this post here. http://praveenpuglia.wordpress.com/2012/11/20/setting-up-wamp-server-in-windows-8/

goto: your-wamp-installation-folder\bin\apache\Apache2.2.22\conf\httpd.conf

Replace: Listen 80

With: Listen 0.0.0.0:80

Note: have tested for Apache2.2.21 and 2.2.22

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!