作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想运行多个网站,并且我希望每个网站(由子域区分)指向不同的 DocumentRoot。
我的设置
Host Machine: Mac (Lion)
Development Machine Ubuntu 10.04 (a vm using VirtualBox)
http://website1.dev
http://website2.dev
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
最佳答案
您是否看过或阅读过最新在线 Apache 文档中提供的 VirtualHost 示例? This specific section (列表中的第一个)关于“在单个 IP 地址上运行多个基于名称的网站”应该对您有所帮助,这似乎正是您正在尝试做的事情。这是根据您的需要修改的代码段:
# Ensure that Apache listens on port 80
Listen 80
<VirtualHost *:80>
DocumentRoot /www/website1
ServerName website1.dev
# (Other directives here)
</VirtualHost>
<VirtualHost *:80>
DocumentRoot /www/website2
ServerName website2.dev
# (Other directives here)
</VirtualHost>
关于ubuntu - 在 Apache2 中使用可变子域运行多个网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9878505/
我是一名优秀的程序员,十分优秀!