动态虚拟主机

发布于 2024-10-31 05:48:23 字数 363 浏览 1 评论 0原文

我怎样才能使这个动态化?这样它就可供每个“用户”和网站使用。 (例如

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

活雷疯 2024-11-07 05:48:23

最简单的方法可能是使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文