【发布时间】:2018-05-05 05:51:55
【问题描述】:
您好,我最近迁移了我的服务器并更改了它的 IP。
当我尝试在浏览器中打开我的 IP 时,应该加载的 Apache 2 默认主页没有加载,不确定是否是导致 IP 更改的原因,我非常怀疑。
我得到:404 未找到
在此服务器上找不到请求的 URL /。
尝试了所有可能的搜索并进行了研发,但无法解决。
检查了以下步骤:
1) Apache 2 服务器正在运行
2) 启用 mod_rewrite
2) tail -f apache logs..没有错误
下面是我的 apache2.conf 文件
etc\apache2\apache2.conf
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
我的 etc\apache2\sites-available\000-default.conf 文件
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
#ServerName localhost
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
#vim: syntax=apache ts=4 sw=4 sts=4 sr noet
我还需要检查哪些其他可能性来解决这个问题?
【问题讨论】:
-
是的,也检查了...授予 /var/www/html 的所有必需权限。还有其他建议吗?