0
如何將每下面的例子來的NodeJS配置多個頂級域名的最好辦法,所以我可以有節點服務器負載例如/ myfolder當某個主機名例如www.domain.com擊中我的網絡服務器?我目前使用Express作爲節點Web服務器。點的多個頂級域名一個節點服務器
<VirtualHost *:80>
ServerName www.domain.tld
ServerAlias domain.tld *.domain.tld
DocumentRoot /www/domain
</VirtualHost>
<VirtualHost *:80>
ServerName www.otherdomain.tld
DocumentRoot /www/otherdomain
</VirtualHost>
爲什麼事情的目錄使用節點時? –