将域名与 Apache 中的目录关联

发布于 2024-11-17 01:37:35 字数 117 浏览 4 评论 0原文

我有一台Ubuntu专用服务器,我有2个域名。第一个与目录“/var/www/”相关,第二个也与目录“/var/www/”相关,我不知道如何将第二个与目录“/var/www/site2/”关联 你能帮助我吗 ? 谢谢 !

I have an Ubuntu dedicated server, and I have 2 domain names. The first one is related to the directory '/var/www/' and the second one is too, I didn't know how to associate the second one to another directory like '/var/www/site2/'
Can you help me ?
Thank you !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

听不够的曲调 2024-11-24 01:37:35

要在同一台服务器上托管多个域并拥有自己的不同目录,您需要使用 VirtualHost 配置指令。在每个文件中,您可以指定自己的一组配置(默认情况下,配置文件存储在 /etc/apache2/sites-enabled/000-default.conf 中):

NameVirtualHost *:80

<VirtualHost *:80>
        ServerName example.com
        DocumentRoot /var/www/site1
        <Directory /var/www/site1>
            Options -Indexes
        </Directory>
</VirtualHost>

<VirtualHost *:80>
        ServerName another-example.com
        DocumentRoot /var/www/site2
        <Directory /var/www/site2>
            Options +Indexes
        </Directory>
</VirtualHost>

第一个位于 /var /www/site1 并关闭目录索引。另一个位于 /var/www/site2 中,并且已打开目录索引。您可以将几乎大多数配置指定为特定于虚拟主机 - 即自定义日志记录、使用 php 或 perl 等模块以及 ServerAlias 等等。请参阅http://httpd.apache.org/docs/2.2/mod/ core.html#virtualhost 了解更多详细信息。

To host multiple domains on the same server with different directories of their own, you need to use the VirtualHost config directive. Inside each one you can specify their own set of configurations (by default the configuration file is stored at /etc/apache2/sites-enabled/000-default.conf):

NameVirtualHost *:80

<VirtualHost *:80>
        ServerName example.com
        DocumentRoot /var/www/site1
        <Directory /var/www/site1>
            Options -Indexes
        </Directory>
</VirtualHost>

<VirtualHost *:80>
        ServerName another-example.com
        DocumentRoot /var/www/site2
        <Directory /var/www/site2>
            Options +Indexes
        </Directory>
</VirtualHost>

The first one lives in /var/www/site1 and has directory indexing turned off. The other is in /var/www/site2 and has directory indexing turned on. You can specify pretty much most configs to be virtualhost specific - ie, custom logging, use of modules such as php or perl, and ServerAlias, among much more. See http://httpd.apache.org/docs/2.2/mod/core.html#virtualhost for more details.

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