找不到Ubuntu 14.04 Apache2 404页面

时间:2017-04-01 13:05:59

标签: mod-rewrite apache2 http-status-code-404

我已经用php5,Apache2,mysql / mysql-php建立了一个Ubuntu 14.04。 现在我想访问mydomain.com/admin,但它的响应出现以下错误 在此服务器上找不到请求的网址/管理员。
这是我的mydomain.com.conf文件

<VirtualHost *:80>
    <Directory /var/www/mydomain>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>
    ServerName mydomain.com
    ServerAlias www.mydomain.com
    DocumentRoot /var/www/mydomain
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

mod_rewrite 已启用

1 个答案:

答案 0 :(得分:0)

您无法访问该域名,因为您尚未正确配置实时域名。转到http://localhost:80/admin以访问您的信息。我会尝试将服务器名称设置为等于您的公共IP地址,并将服务器别名设置为localhost。然后,您可以通过在HTTP客户端的URL中输入您的公共IP地址,从而通过Web访问服务器。