如何使用一台服务器设置多个主机并将它们显示在热点或任何连接的设备上[无网络]
how to set multible hosts using one server and show them on hotspot or any connected device with [ no web ]
如果有这个文件树:
* www // localhost # developer
|\
| * x // dom1.ext
| |
| * y // dom2.ext
| |
| * z // leader.com # immediately provided site when wifi conect 》 includes links to other domains [ dom1.ext, dom2.ext, ... ]
| /
/
我希望我的本地服务器使用热点提供这些域
》每个域都应该在www中有一个文件夹来提供数据,但都有相同的配置文件
》只有能访问电脑的人才能看到服务器开发者端[localhost ip is ::1 #satisfy or not? ]
》 任何其他连接到 wifi
时应立即重定向到 [leader.com]
this should work if internet is connected or not
我尝试了很多使用“hosts”文件来指定主机名,然后让 apache 使用“htdocs.config”
来监听它
》主机仅在设备上本地提供而不是所有网络
在配置中它只使用一个目录
》如何使用多个[每个域一个]
你从[问题标签]中使用了什么并不重要,
只是“如何实现这个或它的一部分”;
即使是很小的信息也能帮到我
- 在
hosts
文件或 virtual/local dns 服务器中为您的虚拟域添加条目
- 在
htdocs.config
中添加 <virtualhost>
标记 - 每个虚拟主机一个标记
- 使用您站点中的代码迭代
<virtualhost>
标记和主机,然后生成您想要的站点列表
如果有这个文件树:
* www // localhost # developer
|\
| * x // dom1.ext
| |
| * y // dom2.ext
| |
| * z // leader.com # immediately provided site when wifi conect 》 includes links to other domains [ dom1.ext, dom2.ext, ... ]
| /
/
我希望我的本地服务器使用热点提供这些域
》每个域都应该在www中有一个文件夹来提供数据,但都有相同的配置文件
》只有能访问电脑的人才能看到服务器开发者端[localhost ip is ::1 #satisfy or not? ]
》 任何其他连接到 wifi
时应立即重定向到 [leader.com]this should work if internet is connected or not
我尝试了很多使用“hosts”文件来指定主机名,然后让 apache 使用“htdocs.config”
来监听它》主机仅在设备上本地提供而不是所有网络
在配置中它只使用一个目录
》如何使用多个[每个域一个]
你从[问题标签]中使用了什么并不重要, 只是“如何实现这个或它的一部分”; 即使是很小的信息也能帮到我
- 在
hosts
文件或 virtual/local dns 服务器中为您的虚拟域添加条目 - 在
htdocs.config
中添加<virtualhost>
标记 - 每个虚拟主机一个标记 - 使用您站点中的代码迭代
<virtualhost>
标记和主机,然后生成您想要的站点列表