Search code examples
phpapachefilezilla

Website showing directory list


I'm hosting a website using filezilla. My browser shows me a directory list rather than my index.php page. When i replace the index.php by an index.html, everything is alright. What should i do in order to access directly to my ondex.php page?


Solution

  • In .htaccess put this code:

    Options -Indexes
    

    It will disable displaying directory list.