我在远程服务器上配置了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>
请告诉我。
答案 0 :(得分:1)
您似乎没有使用与ServerName字段中的服务器名称完全来访问服务器。因此,默认虚拟主机正在处理请求 - Apache文档声明这是配置文件中找到的第一个VirtualHost指令。
删除第一个VirtualHost指令,apache将默认使用您的虚拟主机设置。