Page 1 of 1

open directory

Posted: Thu Jun 02, 2016 2:25 am
by desrat_sari
how to make open directory at VESTA CP?
like "index of"

Re: open directory

Posted: Tue Jun 14, 2016 12:01 pm
by skurudo
Do you have default configs like this

Code: Select all

   <Directory /home/user/web/domain.ru/public_html>
        AllowOverride All
        Options +Includes -Indexes +ExecCGI
...
Make it like this

Code: Select all

   <Directory /home/user/web/domain.ru/public_html>
        AllowOverride All
        Options +Includes +Indexes +ExecCGI
...
Enable Indexes.

You can make changes in user conf files or make own template.

Re: open directory

Posted: Sat Nov 26, 2016 3:08 am
by desrat_sari
sorry, can you screen capture step by step?

Re: open directory

Posted: Sat Nov 26, 2016 12:37 pm
by kenneth
Or you can simply use .htaccess
Make .htaccess file and type: Options +Indexes
/home/user/web/domain/public_html/somefolder

Re: open directory

Posted: Tue Dec 06, 2016 10:23 am
by skurudo
desrat_sari wrote:sorry, can you screen capture step by step?
Sorry, it's simple task with ssh and nano/vim text editor.

Re: open directory

Posted: Tue Dec 06, 2016 10:23 am
by skurudo
kenneth wrote:Or you can simply use .htaccess
Make .htaccess file and type: Options +Indexes
/home/user/web/domain/public_html/somefolder
+1 it's much faster way! ^_^