Outseta uses Javascript to protect your content. A common concern with this method of content protection is that tech savvy user could disable Javascript, allowing them to access otherwise protected content.
Outseta's enhanced content protection script solves for that— protecting against two scenarios:
- It protects against users accessing protected content by disabling Javascript. Should this occur, the user will instead be redirect to a URL of your choosing.
- It protects against instances where the Outseta CDN is blocked and isn't loaded.
Add the script below to the header of your website—users that disable Javascript will redirected to the URL you enter into the script (shown in bold below).
<!-- Handle JavaScript being disabled -->
<noscript>
<meta http-equiv="refresh"
content="0; url=https://www.outseta.com" />
</noscript>
<!-- Ensure the Outseta JavaScript is loaded -->
<script>
(!!window.Outseta) || (window.location.href = window.location.origin);
</script>
We recommend using your homepage URL so users are redirected there if they disable Javascript.
That's it! Users can no longer access your content by disabling Javascript or if the Outseta CDN is blocked.