Как се отваря папка за download ?

ivok

Bashmaistora
Как може да се отвори някоя папка от даден уебсайт за всеки. Тоест качвам там файлове, които като посоча на някого адреса - той да си ги свали сам от този адрес. Да си браузва папката и да си свали файловете, които го интересуват. Сървър Apache.
 
Re: Как се отваря папка за download ?

ако правилно съм разбрал....
в htaccess-а добави

Код:
Options All +Indexes

повече инфо:

Prevent Unauthorized Directory Browsing ^

Prevent unauthorized directory browsing by instructing the server to serve a “xxx Forbidden - Authorization Required” message for any request to view a directory. For example, if your site is missing it’s default index page, everything within the root of your site will be accessible to all visitors. To prevent this, include the following htaccess rule:

# disable directory browsing
Options All -Indexes

Conversely, to enable directory browsing, use the following directive:

# enable directory browsing
Options All +Indexes

Likewise, this rule will prevent the server from listing directory contents:

# prevent folder listing
IndexIgnore *

And, finally, the IndexIgnore directive may be used to prevent the display of select file types:

# prevent display of select file types
IndexIgnore *.wmv *.mp4 *.avi *.etc
http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/#gen2
 

Back
Горе