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