所以我们都知道要在 htdocs 中访问您的站点,您必须输入“localhost/yoursite 文件夹”,对吗?但在我朋友的帮助下,我设法改变了这一点。现在我的朋友走了,所以我不能要求他把它改回来。而不是“localhost/yoursite”,我可以通过“mysite.test”访问它,它与system32中的host.txt有关。现在的问题是我再次在 htdocs 中安装了一个新的 drupal 站点,但我无法访问它,因为我的本地主机总是指向我的第一个 drupal 站点。我该如何配置?
这是我的主机.TXT
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
127.0.0.1 activate.adobe.com
127.0.0.1 drupal6.test
127.0.0.1 belmark.test
drupal 6 是我以前的站点。并且 belmark.test 是我希望 localhost 指向的站点,该站点无法正常工作。即使我省略了 drupal6.test 行 localhost 仍然指向 drupal6.test
这是我的 httpd-vhost.conf
<VirtualHost *:80>
ServerAdmin cadaybelmark@gmail.com
DocumentRoot "C:/xampp/htdocs/drupal6"
ServerName drupal6.test
ServerAlias drupal6.test
ErrorLog "logs/drupal6.test-error.log"
CustomLog "logs/drupal6.test-access.log" combined
</VirtualHost>
<VirtualHost *:80>
ServerAdmin cadaybelmark@gmail.com
DocumentRoot "C:/xampp/htdocs/drupal7"
ServerName belmark.test
ServerAlias belmark.test
ErrorLog "logs/drupal.test-error.log"
CustomLog "logs/drupal.test-access.log" combined
</VirtualHost>