所以我們都知道要在htdocs裏面訪問你的網站,你必須輸入「localhost/yoursite文件夾」對不對?但我已經設法改變了我的朋友的一些幫助。現在我的朋友不在了,所以我不能讓他改回來。我可以通過「mysite.test」訪問它,而不是「localhost/yoursite」,它與system32中的host.txt有關。現在的問題是即時在htdocs中安裝一個新的drupal站點,我不能訪問它,因爲我的localhost總是指向我的第一個drupal站點。我該如何配置?如何將htdocs中的localhost/myfolder重命名爲某個域名
這裏是我的HOST.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是我希望本地主機指向哪個站點不工作的站點。即使我省略drupal6.test行本地主機還是定向到drupal6.test
,這裏是我的httpd-vhost.conf如果
<VirtualHost *:80>
ServerAdmin [email protected]
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 [email protected]
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>
我不知道如何進一步闡述這個問題。請幫忙。 – 2013-03-21 16:12:40