[APACHE]服务器配置实现局域网其他电脑可访问

Posted wesen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[APACHE]服务器配置实现局域网其他电脑可访问相关的知识,希望对你有一定的参考价值。

目标:配置新安装的apache/2.4.33 版本,实现局域网访问局域网apache服务器的网站

第一步:关闭服务器的防火墙,360等杀毒软件,其实不用退出;

第二步:修改httpd.conf文件,

 
   
   
 
  1. <Directory "${INSTALL_DIR}/www/">

  2. #

  3. # Possible values for the Options directive are "None", "All",

  4. # or any combination of:

  5. #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

  6. #

  7. # Note that "MultiViews" must be named *explicitly* --- "Options All"

  8. # doesn't give it to you.

  9. #

  10. # The Options directive is both complicated and important.  Please see

  11. # http://httpd.apache.org/docs/2.4/mod/core.html#options

  12. # for more information.

  13. #

  14. Options +Indexes +FollowSymLinks +Multiviews

  15.  

  16. #

  17. # AllowOverride controls what directives may be placed in .htaccess files.

  18. # It can be "All", "None", or any combination of the keywords:

  19. #   AllowOverride FileInfo AuthConfig Limit

  20. #

  21. AllowOverride all

  22.  

  23. #

  24. # Controls who can get stuff from this server.

  25. #

  26. #   onlineoffline tag - don't remove

  27. #  Require local //删除此句

  28. Require all granted   //添加此句,不要放这个注释

  29. </Directory>

第二步:修改httpd-vhosts.conf文件

 
   
   
 
  1. <VirtualHost *:80>

  2. ServerName localhost

  3. ServerAlias localhost

  4. DocumentRoot "${INSTALL_DIR}/www"

  5. <Directory "${INSTALL_DIR}/www/">

  6. Options +Indexes +Includes +FollowSymLinks +MultiViews

  7. AllowOverride All

  8. Allow from all  //添加此句,不要放这个注释

  9. Require all granted  //添加此句,不要放这个注释

  10. </Directory>

  11. </VirtualHost>

保存修改,重启apache,局域网就可以访问了。


以上是关于[APACHE]服务器配置实现局域网其他电脑可访问的主要内容,如果未能解决你的问题,请参考以下文章

怎么设置Apache配置文件,让本地局域网其他用户访问1

如何配置 Apache localhost 服务器以从其他计算机访问它

如何配置WampServer2.4让局域网用户都可以访问

在LINUX UBUNTU下用LAMP搭建的服务环境可以支持局域网内或者不是局域网内其他电脑登陆查看吗?

LINUX下用apache,本机可以访问,但局域网中的电脑无法访问

别人本地装了apache,局域网其他人输入他的本地ip能不能访问