. Htaccess bir klasörden PHP dosyalarını hizmet devre dışı bırakma

1 Cevap php

. Ve apache php, php3, php5 vb dosyalar için isteklerini inkar gerekir - Ben sadece JPG dosyaları apache tarafından hizmet istediğiniz, sunucu üzerinde bir dizin var.

Ben. Htaccess ne yazmak gerekir?

İlk iki 500 iç hata vererek, aşağıdaki denedim, üçte biri hiç çalışmıyor!

 <Directory full-path-to/USERS>
 <FilesMatch "\.(php3?|phtml)$">  
     Order Deny,Allow
     Deny from All
 </FilesMatch>

<LocationMatch "/USERS/.*\.(php3?|phtml)$">
     Order Deny,Allow
     Deny from All
</LocationMatch>


php_flag engine off

Selamlar,

1 Cevap

Nasıl bazı mod_rewrite'ı?

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !(\.jpg|\.jpeg)
RewriteRule ^(.*)$ - [F]

Bu sadece. Jpg veya. Jpeg dosyaları hizmet sağlayacak ve her şey bir 403 yasak olacaktı.