我装了APACHE和PHP来做网站,index.htm和index.php,如何防止外部直接访问index.php文件呢

2024-12-02 18:15:34
推荐回答(3个)
回答1:

打开你apache安装目录conf文件夹里的httpd.conf
找到

DirectoryIndex index.php index.html index.htm

修改 index.php index.html index.htm 这一部分,哪个在前哪个就优先。
你也可以设置start.html最优先,或者default.php或main.htm等
如果把index.php去掉,则访问域名不会自动转到index.php。

修改完保存重启apache服务

回答2:

主机设置 有首页先后顺序的一个东西.
把index.php改成别的名 也行 这样主机 只读取index.htm了

回答3:

设置默认首页。