prevent the browser from downloading doc docx and pdf

9,396

You have indexed document files mean, you letting crawlers to fetch your files, but you don't want people typing exact URL and downloading it.

So, here is few examples

Welcome for Googlebot, but when there is no referer, reject it.

SetEnvIf User-Agent "Googlebot" welcome

SetEnvIf Referer "^$" reject

order Allow,Deny
Allow from env=welcome
Deny from env=reject

(Note:Referer can explicitly disable in web browsers, and there is still many other ways to get the files, instead of typing exact url in browsers.)

Share:
9,396

Related videos on Youtube

bogha
Author by

bogha

Web Developer System Administrator

Updated on September 17, 2022

Comments

  • bogha
    bogha over 1 year

    i have some indexed document files ( .doc , .docx and .pdf ) stored in a folder in the website.

    when i type the full address of the file ( ex http://www.website.com/folder1/folder2/1.doc ) the visitor or any body who is viewing the website can easily download the file.

    are there any way to prevent this. are there any configuration has to be done to the .htaccess file to prevent this from happening.

    also if folder2 contains only document file, how can i prevent a listing of the files inside this folder in case apache stoped running.

    thank you

    • R. Martinho Fernandes
      R. Martinho Fernandes over 14 years
      "how can i prevent a listing of the files inside this folder in case apache stoped running." <- If apache stops running, I think you're set.
    • bogha
      bogha over 14 years
      it happend that the hosting company suddenly had some problems in thier server and apache stopped running. the folder that contains only the .doc .docx and .pdf list of files could be viewed by writing the full url of their directory in the address bar and the visitor could easily download these files becouse they were listed as a files under a directory
  • bogha
    bogha over 14 years
    the .htaccess file now has the following Options All -Indexes <FilesMatch "\.(htaccess|doc|pdf|docx)$"> Order Allow,Deny Deny from all </FilesMatch> but i still can download the files if i type the full address.