views:

13

answers:

1

Hi, I have this set up in my .htaccess

Options +Indexes 
IndexOptions -FancyIndexing 

but even with -fancyindexing, it shows the modification time. How do you disable this?

thanks

+1  A: 

I believe you want (From Apache's docs on IndexOptions):

IndexOptions SuppressLastModified

Documentation states:

This will suppress the display of the last modification date, in fancy indexing listings.

So you'll probably want fancy indexing turned on to have this work correctly.

Danny