Martin Bokša
Martin Bokša

Reputation: 188

.htaccess - deny from all, excludes images

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

Answers (2)

alexcasalboni
alexcasalboni

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

Martin Bokša
Martin Bokša

Reputation: 188

Tx you, My final code

order allow,deny
<Files ~ "\.(jpg|jpeg|png|gif|pdf|txt|bmp)$">
   allow from all
</Files>

Upvotes: 10

Related Questions