To enable the .htaccess feature, please log into your Members section, then follow the steps below:
1. Click Hosting
2. Click Settings
3. From the .htaccess section, use the pull-down menu option to choose enable
4. Click Update
Below are some examples to enable/disable directory browsing using an .htaccess file:
Example #1:
The following example enables directory browsing:
Options +Indexes +MultiViews
Example #2:
The following example disables directory browsing:
Options -Indexes
Example #3:
The following example enables directory browsing but hides all .gif and .php files from being listed
Options +Indexes
IndexIgnore *.gif *.php
Example #4:
The following example enables directory browsing but hides presents an empty listing
Options +Indexes
IndexIgnore *