gpt4 book ai didi

apache - 如何获取默认的 Apache getting-started.html?

转载 作者:行者123 更新时间:2023-12-04 19:30:58 25 4
gpt4 key购买 nike

我的问题很简单,但对我来说很难解决。

我有标准 /var/www/html目录,但后来我只是删除它并创建了虚拟主机,但我没有考虑复制默认页面(即 index.html ),但我需要它回来。在哪里可以找到它或如何向 Apache 发送“请求”以在 /var/www/* 的文件夹中生成它?

我正在使用 CentOS7。

最佳答案

您正在使用 CentOS,所以大概您正在从 httpd 运行 Apache包裹。 /var/www/html 中没有内容:

[root@a02004d67c2b /]# cat /etc/centos-release
CentOS Linux release 7.4.1708 (Core)
[root@a02004d67c2b /]# find /var/www/html/
/var/www/html/

默认欢迎页面由 /etc/httpd/conf.d/welcome.conf 提供,看起来像:
<LocationMatch "^/+$">
Options -Indexes
ErrorDocument 403 /.noindex.html
</LocationMatch>

<Directory /usr/share/httpd/noindex>
AllowOverride None
Require all granted
</Directory>

Alias /.noindex.html /usr/share/httpd/noindex/index.html
Alias /noindex/css/bootstrap.min.css /usr/share/httpd/noindex/css/bootstrap.min.css
Alias /noindex/css/open-sans.css /usr/share/httpd/noindex/css/open-sans.css
Alias /images/apache_pb.gif /usr/share/httpd/noindex/images/apache_pb.gif
Alias /images/poweredby.png /usr/share/httpd/noindex/images/poweredby.png

这意味着如果您没有 index.html在你的 DocumentRoot (即 /var/www/html ),Apache 将返回一个状态
代码 403 和来自 /usr/share/httpd/noindex/index.html 的内容.

您可以为您的虚拟主机复制相同的配置,或者您可以只复制 /usr/share/httpd/noindex 的内容进入你的虚拟主机 DocumentRoot .

关于apache - 如何获取默认的 Apache getting-started.html?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50998306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com