我在Debian上有一个Apache 2并且是初学者(新手)。 在Web浏览器中访问我的Web服务器时,我获得了Apache默认欢迎页面:
我试图让我的真实网站显示(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默认页面仍然在这里。我错过了什么?
答案 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
cd /var/www/html
sudo chown -R
whoami /var/www/html
rm index.html
ls