Support Knowlege Base
Back To Knowledge Base
Hosting / Apache / How do you show the whole file name while using .htaccess to list files in a directory?
Just use the Apache IndexOptions directive in addition to Options +Indexes in the .htaccess file.
Options +Indexes
IndexOptions NameWidth=*
The key for you is the NameWidth value which when set to a wildcard value of * will show the full length of the file and directory names.