• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

I need the Indexes option perminantly set.

A

alantone

Guest
I post images to my server for realtors and I don't want to have to create an index page for each folder. In order to have the server automatically create an index page I have been vi'ing into /etc/httpd/conf.d/zz010_psa_httpd.conf and setting "Options Indexes" see below:

<Directory "/var/www/vhosts">
AllowOverride All
Options SymLinksIfOwnerMatch Indexes
Order allow,deny
Allow from all
<IfModule sapi_apache2.c>
php_admin_flag engine off
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine off
</IfModule>
</Directory>

I save it, but then if the server reboots this option gets removed. Does anyone know how to perminently turn this "Indexes" option on?
 
you can create a .htaccess file in your document root with:

Options +Indexes

or you can use a vhost.conf in the conf directory of the domain.
 
Back
Top