apache默认不返回index.php

时间:2014-01-27 18:42:09

标签: apache lamp digital-ocean directoryindex

我最近制作了一个预装了LAMP的DigitalOcean液滴。 将我的网站(包括index.php)上传到/ var / www

Apache只返回It Works!页, 我必须手动将/index.php添加到我的网址

我尝试过的事情:

  1. 制作包含“DirectoryIndex index.php”
  2. 的.htaccess文件
  3. DirectoryIndex index.php添加到a​​pache2.conf
  4. 首先在dir.conf中设置index.php
  5. 制作index.html,也没有显示。
  6. 编辑:  这是我的apache2.conf文件:http://pastebin.com/BMgiNdiD

1 个答案:

答案 0 :(得分:1)

您缺少以下配置:

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
    DirectoryIndex index.php index.pl index.cgi index.asp index.shtml index.html index.htm \
               default.php default.pl default.cgi default.asp default.shtml default.html \
               default.htm home.php home.pl home.cgi home.asp home.shtml home.html home.htm
</IfModule>