我正在尝试更改我的localhost名称服务器,并且已将以下代码添加到C:\ Windows \ System32 \ drivers \ etc \ hosts文件
127.0.0.1 testingdomainhello.com
127.0.0.1 www.testingdomainhello.com
我已将以下代码添加到C:\ xampp \ apache \ conf \ extra \ httpd-vhosts.conf文件
<VirtualHost *:80>
ServerName www.testingdomainhello.com
ServerAlias testingdomainhello.com
DocumentRoot c:/xampp/htdocs/sites/directory
</VirtualHost *:80>
当我添加该位并尝试在Xampp中重新启动Apache时,它将不会重新启动,并且我假设它与被阻止的端口有关。我如何解决这个问题,以便Apache再次启动?
答案 0 :(得分:1)
Bingo在我使用时打破了它......
</VirtualHost *:80>
所以只需使用标记结束虚拟主机......
</VirtualHost>