EasyPHP 默认加载页面

EasyPHP default load page

我注意到当我访问 本地网站 www 文件夹中的默认 index.php 文件没有显示,当我打开一个文件夹,它会自动打开名为 index.html 的文件,有人知道为什么会这样吗? (我正在使用 EasyPHP 1.8 因为这是我们在高中时使用的版本)。

谢谢!

这取决于您使用的网络服务器配置。

apache2配置文件中设置(例如在Ubuntu16.04/etc/apache2/apache2.conf)或者在.htaccess 文件(.php 文件优先于 .html 文件):

DirectoryIndex index.php index.html index.htm

或者简单地说:

DirectoryIndex index.php