xampp+apache+php:局域网中访问网站配置过程


要在局域网中访问xampp的网站,比如我的安卓手机连上笔记本的自建wifi之后,想通过这个来调试一下程序,怎么弄呢?


1 cmd 中输入ipconfig找到无线局域网中的自己的ip

一般为192.168.*.*

2 配置httpd.conf  

2.1:将Listen 80给为Listen 自己的ip:80

2.2将Servername localhost:80改为 自己的ip:80

2.3将有

Order deny,allow
    Deny from all

句子的

改为:

Order deny,allow
    Allow from all

不要问我为什么,这只是让机子可以测试,如果真正要配置使用,那么还需要细细斟酌。


3.如果还不行 ,那可能还需要配置xampp\apache\conf\extra\httpd-xampp.conf中的httpd-xampp.conf

按2.3的方法,将Deny改为Allow


that isall

你可能感兴趣的:(web,php,apache)