我的Apache服务器IP地址为192.168.1.100,域名为test.local
。
- 如果用户键入URL,例如说“ http://test.local ”,则应允许它们。
- 如果用户尝试访问“ http://192.168.1.100 ”,则应将其拒绝。
我该怎么做?
我的Apache服务器IP地址为192.168.1.100,域名为test.local
。
我该怎么做?
Answers:
我想做的是基于名称的虚拟主机,因此,按照以下思路,您可能会入门:
NameVirtualHost *:80
<VirtualHost *:80>
<Location />
Order deny,allow
Deny from all
</Location>
# other configuration for default host...
</VirtualHost>
<VirtualHost *:80>
# This is the one you would like visible
ServerName test.local
<Location />
Order deny,allow
Allow from all
</Location>
</VirtualHost>
(我有点着急,所以即使在那里打错字也很抱歉。)
_default_
VirtualHost条目。