我跟着這些instructions to configure subdomains for apache。我可以用http://localhost/test
訪問子域,雖然我無法通過http://test.localhost
訪問它。我怎樣才能實現後者?如何在Ubuntu上爲Apache2配置子域名?
# /etc/apache2/sites-available/test.localhost
<VirtualHost *:80>
# Server name
ServerName test.localhost
# Document root
DocumentRoot /var/www/test/
# Custom log file locations
ErrorLog /var/www/test/logs/error.log
CustomLog /var/www/test/logs/access.log combined
</VirtualHost>
當你跟着說明,它應該工作。那麼你錯過了什麼? – KingCrunch
您是否已將'test.localhost'添加到您的主機文件以確保它解析爲127.0.0.1? –
@Marc B - 謝謝!我按照教程中的描述將子域配置爲127.0.0.2。現在它工作了!請讓我給你答案標誌。 – JJD