Stop Losing Sales To Intellectual Property Thieves With These Piracy Prevention Tips

>code to do that here.
While there is no perfect method to prevent productUsing the robots.txt fileMany advise to place a disallow
theft, there are a number of things you can do to helpin your robots.txt file like so...
minimize it from simple, common sense techniques toUser-agent: *Disallow: /downloads
more advanced, technicial methods using htaccess.We feel this is not the best method because you are
Make the download page difficult to findPlace yourin a sense advertising where your downloads are
product in an obscurely named folder and avoid usingstored and bad bots will disregard this file anyway. 
the product name itself as either the folder name orInstead we suggest that you add something similar to
the file name.  Something like yoursite.com/85478depthis instead.
iisile458.html is better than yoursite.com/downloadsUser-agent: *Disallow: /*.zip$Disallow: /*.pdf$
thankyou.htmlNote that Googlebot does obey this statement but not
Make Your Policies Clear To Your CustomersMakeall bots recognize this and other steps should also be
sure that your customers understand what their rightstaken.  More information on the robots.txt file can be
are and what your policies are regarding yourfound here.
product.  It is best to have this information clearlyUse Meta Tags On Your Product Download
stated on your product download page.  We noticePagesAgain, as with the robots.txt file, this will not
that many copywriters place such notifications withinprotect from the bad bots but is better to have in
the product itself in either the EULA or directly in theplace than not.  Place the following code on your
ebook if it is that type of product.download page between the and tags.
Unfortunately, many products are passed around toConfirm Your Product Page Has Not Already Been
friends and family before your product is actuallyIndexedDo a search on Google for a list of pages
accessed by the paying customer.  This is especiallyalready indexed by searching with the following search
true for ebooks and is something that may beIf you find that your download page or product has
deterred by making it clear before they download youralready been indexed, you can use the Google
product.Automated URL Removal System to have it
Appearance Is ImportantIs your download pageremoved. You must first add the Meta Tag above to
professional looking or does it look like it was thrownthe page before using this tool.  More information can
together at the last minute with nothing but a downlinkbe found on Googles site here.
link.  Do you have contact information available soRestrict Access Through Your HtaccessThrough the
that your customer may contact you if they have ause of .htaccess on Unix servers you are able to
problem accessing the file?moderate access to directories or even certain files. 
If it looks like your don't care about your product thenThere are numerious techniques and variables
your customer may not take your policies serious.  Byavailable when utilizing these directives, so many that it
having a tidy looking download page with full contactis outside the scope of this particular page to try and
information and a detailed policy statement you portrayfully explain them all so here we will provide you with a
a professional company image, one that takes theirshort example and you can find more information here.
policies seriously.Adding the following to your .htaccess file in your
You can increase your professional image bydownload folder ...
displaying your customers IP address along with aOrder Deny,AllowDeny from allAllow from
timestamp near your copyright policies.  This lets themyourdomain.comAllow from ... will only allow users who
know that their download activities are being logged.have been referred either directly from your website
If your pages end in .php and your host supports php,or from your payment processors website to access
this is easily accomplished by adding the following linesany documents in that folder.  If unsure of your
of code...payment processors referring domain you should
If your page ends in .html and can not be changed forcontact them directly for clarification as sometimes it
whatever reason, you may add the following code tomay be different that what you think.  You also have
your .htaccess file in your download directory to forcethe ability to allow or deny access by referring IP as
your server to parse the page as if it were .phpwell as country if you choose.  Be sure and test
AddType application/x-httpd-php .php .htmlbefore going live with this method by making a few
You can modify your time stamp by changing thetest purchases.
"echo date" code.  You can find more information onYou could add to this by directing disallowed referrers
the php date format here.to either your sales page or a support page where
You can make this look even more professional bysomeone could contact you if they felt they were
displaying this information in an image, you can find thedenied access by mistake.