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

后端 未结 8 1497
梦谈多话
梦谈多话 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:37

    You should check that the Apache config allows for the .htaccess to be executed. In your virtualhost config, there should be a line:

    AllowOverride All

    If there isn't, that's why the .htaccess isn't taking effect.

提交回复
热议问题