.htaccess file not being read (“Options -Indexes” in .htaccess file not working)

后端 未结 8 1389
梦谈多话
梦谈多话 2020-12-13 12:56

I created an .htaccess file with only the following line:

Options -Indexes

However, the index is still shown for the directory.<

8条回答
  •  醉梦人生
    2020-12-13 13:47

    In case you have

    AllowOverride None
    

    Change that to:

    AllowOverride All
    

    in your httpd.conf or in your default virtualhost file in in /etc/apache2/sites-available/...conf

提交回复
热议问题