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

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

    Also, beside changing AllowOverride All to the vhost configuration file, you may also need to add the following at the beginning of the .htaccess file:

    RewriteEngine On
    RewriteBase /
    

    Otherwise may still not detecting the rewrites or redirects.

提交回复
热议问题