我想在apache上(在xampp上)运行一个主机名,并且我已经更改了httpd.conf文件,以使ServerName example.com
。
然后我将httpd-vhosts.conf更改为
<VirtualHost *:80>
ServerAdmin admin@example.com
DocumentRoot "C:/xampp/htdocs/example"
ServerName example.com
ErrorLog "logs/example.com.log"
CustomLog "logs/example.com.log" common
</VirtualHost>
,然后将127.0.0.1 example.com
添加到System32-> drivers-> etc文件夹中的hosts文件中。
它可以在运行xampp的计算机上运行(我认为是因为该主机文件已更改),但不能在同一网络上的其他计算机上运行,我认为该网络应该由虚拟主机文件处理。