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
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
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.