将服务器设置为默认查找 index.php 文件

将服务器设置为默认查找 index.php 文件

我是一名 Web 开发人员,我已请求我们的系统管理员为我的团队设置一个服务器,用作开发环境。

PHP 以 CGI 形式运行。当我尝试打开http://我的地址/我收到403 禁止。当我尝试打开http://我的地址/index.php一切安好。

如何设置服务器默认查找 index.php 文件?

PS:系统管理员目前不在,所以他无法帮我做这件事。

答案1

或者将其放入 /etc/apache2/httpd.conf 的某个位置,但记得注释旧指令(即 index.html)。在 Windows 上,文件位于其他地方。

答案2

使用 DirectoryIndex 指令:

DirectoryIndex index.php

更多信息请见如何使用 DirectoryIndex

答案3

如果您使用 Apache 但无法访问其配置,您可以将 .htaccess 文件放在网站文件夹中。

只需将以下内容放入.htaccess 文件即可:

DirectoryIndex index.php

相关内容