Apache - Apache2 Debian默认页面而不是我的网站

时间:2018-01-08 14:54:47

标签: apache debian apache2

我在Debian上有一个Apache 2并且是初学者(新手)。 在Web浏览器中访问我的Web服务器时,我获得了Apache默认欢迎页面:

enter image description here

我试图让我的真实网站显示(var / www / mywebsite.com /),而不是这个页面(位于var / www / html中)。下面是我服务器上的树:

---- etc
-------- apache2
------------ sites-enabled
---------------- mywebsite.com.vhost -> etc/apache2/sites-available/mywebsite.com.vhost
------------ sites-available
---------------- mywebsite.com.vhost

---- var
-------- www
------------ mywebsite.com
---------------- web
-------------------- css/
-------------------- js/
-------------------- img/
-------------------- error/
-------------------- index.html
-------------------- robots.txt

我的.vhost文件配置得很好:

AllowOverride None
Require all denied

DocumentRoot /var/www/mywebsite.com

ServerName mywebsite.com
ServerAlias www.mywebsite.com
ServerAdmin webmaster@mywebsite.com

ErrorLog /var/log/ispconfig/httpd/mywebsite.com/error.log

Alias /error/ "/var/www/mywebsite.com/web/error/"
ErrorDocument 400 /error/400.html
ErrorDocument 401 /error/401.html
ErrorDocument 403 /error/403.html
ErrorDocument 404 /error/404.html
ErrorDocument 405 /error/405.html
ErrorDocument 500 /error/500.html
ErrorDocument 502 /error/502.html
ErrorDocument 503 /error/503.html


<Directory /var/www/mywebsite.com/web>

    # Clear PHP settings of this website
    <FilesMatch ".+\.ph(p[345]?|t|tml)$">
    SetHandler None
    </FilesMatch>
    Options +FollowSymLinks
    AllowOverride All
    Require all granted.

</Directory>

..我重启了Apache。没有成功! Apache默认页面仍然在这里。我错过了什么?

4 个答案:

答案 0 :(得分:0)

您的index.html位于/var/www/mywebsite.com/web,我猜这是网站的根文件夹?试试这个配置:

DocumentRoot /var/www/mywebsite.com/web

答案 1 :(得分:0)

我找到了解决方案。

Apache加载的唯一* .conf文件是etc / apache2 / sites-available / 000-default.conf,然后我处理了这个文件以解决我的问题。

希望将来能帮助某人!

答案 2 :(得分:0)

只需从此路径/var/www/html ....Good

中删除这两个文件 index.html 和 index.nginx-debian.html

答案 3 :(得分:0)

删除 index.html

您的 index.html 位于 /var/www/html

  1. cd /var/www/html
  2. sudo chown -R whoami /var/www/html
  3. rm index.html
  4. ls