如何设置PHP 服务器 通过IP访问
如果你是用的apache的话,你可以查看下配置文件中的Listen部分,改成Listen 80就可以监听所有网段了。如果是其他的服务器,再补充下问题吧~
嗯,还有你电脑有哪些防火墙,windows的防火墙也会让apache不能从其他机器访问~~你试试^_^
1、外网的话有个服务器空间,上传了访问就好。
2、内网的话,配置一下Apache的vhostsconf,让你的内网IP直接指定到项目,
别人访问你的IP即可。
下面是虚拟域名配置示例:
<VirtualHost :80>
ServerName localhost
#这里假设1921680111是你的IP
ServerAlias 1921680111
DocumentRoot "D:\xampp\htdocs"
<Directory "D:\xampp\htdocs">
Options FollowSymLinks IncludesNOEXEC Indexes
DirectoryIndex indexphp indexhtml
AllowOverride All
Order Deny,Allow
Allow from all
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule - [F]
</Directory>
</VirtualHost>
0条评论