wamp 服务器 vhosts 地址进入 google 搜索页面

wamp 服务器 vhosts 地址进入 google 搜索页面

我的虚拟主机文件:

<VirtualHost *:80>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "C:/wamp64/www/"
  <Directory "C:/wamp64/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>

和项目虚拟主机:

<VirtualHost *:80>
   ServerName www.tour.test
   DocumentRoot "C:/wamp64/tour/public"
    SetEnv APPLICATION_ENV "development"
    <directory "C:/wamp64/tour/public">
        DirectoryIndex index.php
        AllowOverride all
        Order Allow,Deny
        Allow from all
    </directory>
</VirtualHost>

答案1

假设我没有误解你的问题,那么有两个可能的罪魁祸首:

至于尾随斜杠,Chrome、Firefox 和 Opera 的当前版本对于本地域名是必需的(尽管localhost不需要这种处理)。

关于您的 ServerName/ServerAlias 指令还有两个小问题:

  • 您的localhost条目实际上不需要该ServerAlias localhost指令。

  • 您的www.tour.test主机条目应该(可以说)以类似的方式开始:

    ServerName tour.test
    ServerAlias www.tour.test, *.tour.test

相关内容