0

我正在寻找在 Ubuntu 中设置通配符虚拟主机。我已经很容易地在 WAMP 设置上进行了设置,但是我对 Linux 的了解还不够,无法知道设置有何不同。

目标是能够创建如下文件夹:

site.weblocal
site2.weblocal
site3.weblocal
etc.....

无需每次添加单独的虚拟主机。有人推荐过dnsmasq吗?

任何提示将非常感谢 :)

4

2 回答 2

4

对于 Ubuntu,它很简单

sudo apt-get install dnsmasq
sudo echo "address=/weblocal/127.0.0.1" >> /etc/dnsmasq.d/weblocal
sudo /etc/init.d/dnsmasq restart
于 2012-07-11T15:35:16.003 回答
3

sudo apt-get install dnsmasq

须藤 gedit /etc/dnsmasq.conf

添加这一行“地址=/.weblocal/127.0.0.1”

然后使用以下命令重新启动 dnsmasq

须藤服务 dnsmasq 重启

于 2013-06-06T05:35:16.543 回答