1

也许这不是问这个问题的正确渠道,但我不知道在哪里问。

我想知道如何在我的 ubuntu 上使用 apache 运行 html 文件。我已经用 javascript 和一个 html 文件编写了程序,我想通过 apache 运行它。我找不到 htdocs 文件夹来复制我的文件,除了我没有在 ubuntu 中这样做的权限。我的 apache 安装在 /usr/share/apache2 中。当我写http://localhost它说:

It works!

This is the default web page for this server.

The web server software is running but no content has been added, yet.

但我不知道在哪里添加内容。

任何帮助。

4

2 回答 2

6

它提供 HTML 文件的默认文件夹是/var/www.

例如,/var/www/test.html将是http://localhost/test.html

于 2013-11-09T23:36:04.420 回答
0

在我安装并运行 Apache 2 的情况下,如果我localhost/在浏览器中输入内容,它会打开 Apache 2 Ubuntu 默认页面。

现在我所做的是:假设您的 HTML 网页 Demo.html 位于网站目录中,然后使用以下命令之一复制 HTML 页面:

:~$ cp ~/Website/Demo.html /var/www/html

如果此命令不起作用,请尝试使用以下命令:

:~$ sudo cp ~/Website/Demo.html /var/www/html

然后打开浏览器并在浏览器搜索栏中输入:localhost/Demo.html

它将打开复制的 Demo.html。

此外,如果您想从运行 Apache 2 的机器外部访问此托管网页,请使用它的外部 IP 地址而不是 localhost,如下所示:

ExternalIP/Demo.html
于 2019-10-18T13:45:34.310 回答