How I can create .htaccess file, When I wanna disable all files except images.
My code.
order deny,allow
deny from all
Tx you, My final code
order allow,deny
<Files ~ "\.(jpg|jpeg|png|gif|pdf|txt|bmp)$">
allow from all
</Files>
You can check it here.
For example you can use the following:
<Files ~ "\.(jpg|jpeg|png|gif)$">
order deny,allow
allow from all
</Files>