首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

apache配备好后index.php只显示目录

2013-07-01 
apache配置好后index.php只显示目录大家好,我的apache和php配置好后,localhost不显示index.php的内容,而是

apache配置好后index.php只显示目录
大家好,我的apache和php配置好后,localhost不显示index.php的内容,而是显示根目录下的列表,但我输入localhost/phpinfo.php,却能显示内容,这是怎么回事呢,PHP都配置好了

LoadModule php5_module "D:/Program Files/php5.2/php5apache2_2.dll"
AddType application/x-httpd-php .php .do .action
AddType application/x-httpd-php .htm .html
PHPIniDir "D:/Program Files/php5.2" 

<IfModule dir_module>
    DirectoryIndex index.html index.php
</IfModule>
[解决办法]
不显示索引列表:
httpd.conf,找到目录段中这一行:
Options Indexes ......

去掉Indexes,重启Apache

你确定你跟目录下有放index.php文件吗?dir模块有加载么?

[解决办法]
localhost/index.php 有内容执行么?

可以的话,可以将index.php提前

DirectoryIndex  index.php index.html
[解决办法]
LoadModule env_module modules/mod_env.so

热点排行