Apache lists directory files instead of index.php

蹲街弑〆低调 提交于 2019-12-07 05:01:17

问题


My Apache web server suddenly stopped serving index.php files automatically. It shows direcotry listing instead. I've tried helps but no luck.

My htttpd.conf file includes

<IfModule module_php5>
    AddType application/x-httpd-php .php
</IfMOdule>

and

DirectoryIndex index.php index.html

What could be wrong if all above are OK?


回答1:


I was surprised by the quick response when I first asked the question, and then the replies stopped! So I found the answer myself (by accident!). The main server root displayed index files fine, it was my user Sites folder that did not.

There is a .conf file for each user in apache users directory. I added

<Directory "/Users/mavili/Sites/">
    Options Indexes MultiViews FollowSymLinks SymLinksIfOwnerMatch Includes ExecCGI
    DirectoryIndex index.php index.html index.pl index.cgi
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

into the file for my username and tata, it worked!



来源:https://stackoverflow.com/questions/13898386/apache-lists-directory-files-instead-of-index-php

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!