1
我想阻止上傳文件到特定的目錄, ,因爲我已經在這個目錄中有一些php和html文件。如何保護上傳到其中的文件的目錄
我試圖.htacess:
Options -Indexes
<Files *>
deny from all
</Files>
這是工作,但讓我無法從文件夾中打開的任何文件。 我然後用這個嘗試:
<Files *.php>
deny from all
</Files>
但我不能在此文件夾中的index.php開始...
誰能幫助我?