wamp设置虚拟目录

作者: 什么都值得 | 来源:发表于2017-07-06 06:50 被阅读20次
    server
    原文链接
    记得以前在wamp设置虚拟目录的时候都还挺简单的,干脆直接没有记录下来,但这次遇到一些坑,特记录于此。

    系统环境:Windows 7 + WampServer2.5

    注意事项:下面的步骤一定要参考其完整路径,切勿直接在资源管理器里进行搜索,因为在C:\wamp\bin\apache\apache2.4.9\conf目录下居然有一个original,应该是用来保存最原始的配置信息,对这里面的配置文件进行的更改并不会影响当前的使用。

    配置过程:

    1. 首先在C:\\wamp\\bin\\apache\\apache2.4.9\\conf\\httpd.conf目录中找到下面两行:

      # Virtual hosts
      Include conf/extra/httpd-vhosts.conf  # 去掉这一行的注释
      
    2. 然后仍然在该文件中找到监听端口的配置

      # Listen 12.34.56.78:80
      Listen 0.0.0.0:80
      Listen [::0]:80
      Listen 8080       # 这一行是自己添加的,我想要它监听8080端口
      
    3. 将vhost的配置文件C:\\wamp\\bin\\apache\\apache2.4.9\\conf\\extra\\httpd-vhosts.conf修改为如下(去掉原来的):

      <VirtualHost *:80>
        DocumentRoot "c:/wamp/www"
        ServerName localhost
        ServerAlias localhost
        
      <Directory  "c:/wamp/www">
        AllowOverride All
        Require local
      </Directory>
      
      </VirtualHost>
      
    TroubleShooting
    • wamp局域网403 Forbidden解决方法: 出现在我想使用手机通过电脑分享的wifi网络访问电脑中的wamp服务。其实和linux一样,只是linux使用Allow from all,而windows使用Require all granted。解决方法如下:
      1.首先找到wamp的apache配置文件目录,我的在C:\\wamp\\bin\\apache\\apache2.4.9\\conf\\http.conf,然后打开它后找到,如下几行

      # Each directory to which Apache has access can be configured with respect
      # to which services and features are allowed and/or disabled in that
      # directory (and its subdirectories).
      #     
      # First, we configure the "default" to be a very restrictive set of
      # features.
      #         
      <Directory />
        AllowOverride All
        #Order Deny,Allow     # 注释掉
        Require all granted   # 添加这一行
      </Directory>
      
      <VirtualHost *:8080>
          DocumentRoot "f:/workspace/laravel/public"
          ServerName localhost
          ServerAlias localhost
          <Directory  "f:/workspace/laravel/public">
              AllowOverride All
              Require local
          </Directory>
      </VirtualHost>
      

      然后重启Apache即可

    相关文章

      网友评论

        本文标题:wamp设置虚拟目录

        本文链接:https://www.haomeiwen.com/subject/laichxtx.html