我想知道VirtualHost Context 中“ default :*” 和 “*:*”之间的区别。
<VirtualHost _default_:*>
#...
ServerName host.example.com
#...
</VirtualHost>
<VirtualHost *:*>
#...
ServerName host.example.com
#...
</VirtualHost>
Run Code Online (Sandbox Code Playgroud)
我不知道区别和用途。
thk