动态虚拟主机
我怎样才能使这个动态化?这样它就可供每个“用户”和网站使用。 (例如
<VirtualHost server-ip:80>
ServerName user.website.nl
DocumentRoot /var/wwww/user/website.nl
...
,例如kevin.website.nl将显示/var/www/kevin/website.nl中的内容。当/var/www/kevin/test.com/存在时,那么当我访问kevin.test时。或者,如果用户“thomas”存在并且 /var/www/thomas/abc.com/ 存在,并且我们访问 thomas.abc.com,它将从该目录加载。
How can I make this dynamic? So that it is usable for every 'user' and website. (For example
<VirtualHost server-ip:80>
ServerName user.website.nl
DocumentRoot /var/wwww/user/website.nl
...
So for example kevin.website.nl will display the content from /var/www/kevin/website.nl. And when /var/www/kevin/test.com/ exists, then when I visit kevin.test.com it will display the content in that directory. Or if user 'thomas' exists and /var/www/thomas/abc.com/ exists and we visit thomas.abc.com, it will load from that directory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法可能是使用 mod_vhost_alias。
我相信你也可以使用 mod_rewrite 的环境变量来做到这一点。不过,您需要使用技巧来执行此操作。
The easiest way to do this is probably using mod_vhost_alias.
You can also do this with the environment variables of mod_rewrite I believe. You'll need to use a trick to do this though.