-1

我在远程服务器上配置了 apache 和 php 并且 apache 工作。当我将我的 php 文件放在 /var/www 中时,URL 没有重定向。

当我输入网址http://xxx.xx.xx.x 时 ,我得到以下输出:

It works!
This is the default web page for this server.

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

在 /etc/apache2/apache.conf 我没有找到下面的块我添加下面的块并重新启动 apache 仍然没有重定向到 /var/www

<VirtualHost *:80>
ServerName xxx.xx.xx.x
DocumentRoot /var/www/
</VirtualHost>

请务必让我知道。

4

1 回答 1

1

看起来您没有使用与 ServerName 字段中完全相同的服务器名称来访问服务器。因此,请求由默认虚拟主机提供服务 - Apache 文档指出这是在配置文件中找到的第一个 VirtualHost 指令。

删除第一个 VirtualHost 指令,apache 将默认使用您的虚拟主机设置。

于 2013-03-18T03:56:35.417 回答