我在apache v2.2上有一个apache服务器,我无法从名称服务器访问网站,只能从IP地址(从其他计算机)或localhost(在同一台服务器上)访问 我在httpd.conf
下有这个配置Listen 80
ServerName localhost:80
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "C:/Toolkit/wwwroot"
ServerName configuration.tw.net
#ServerAlias configuration.tw
ErrorLog "logs/error.log"
#Other directives here
CustomLog "logs/access.log" common
</VirtualHost>
使用configuration.tw.net我无法访问网站,只能从服务器的IP访问。
任何人都可以帮我解决这个问题吗?