将 apache2 指向我自己的 index.html 文件夹?

将 apache2 指向我自己的 index.html 文件夹?

在 apache2 中,我尝试获取一个已经包含索引文件、视频、图片(完全已构建的网站)的文件夹,并将该文件夹放在 www 中,并将 apache2 指向该文件夹内的索引文件之一,以便网络可以运行,该文件夹包含一个已配置的网站,其中包含已配置的其他页面,但我需要将 apache 指向该文件夹,而不是默认的 index.html。有人知道怎么做吗?

答案1

我认为您想更改 apache 的 DocumentRoot 配置。

  1. 检查配置在哪里。通常,apache2 配置文件位于 /etc/apache2/ 文件夹中。

    修改 /etc/apache2/apache2.conf

在该文件中,您可以找到“Doc​​umentRoot”配置的位置

Include sites-enabled/

这表明您的配置文件位于“/etc/apache2/sites-enabled/”中。

2.编辑 DocumentRoot 配置

vi /etc/apache2/sites-enabled/000-default

在该文件中,您可以找到如下所示的“DocumentRoot”

DocumentRoot /var/www

并且,根据需要进行修改。

3.重新启动apache。

service apache2 restart

相关内容