我最近制作了一个预装了LAMP的DigitalOcean液滴。 将我的网站(包括index.php)上传到/ var / www
Apache只返回It Works!页, 我必须手动将/index.php添加到我的网址
我尝试过的事情:
DirectoryIndex index.php
添加到apache2.conf 编辑: 这是我的apache2.conf文件:http://pastebin.com/BMgiNdiD
答案 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>