Skip to main content
The Supertab Connect WordPress plugin handles both RSL license serving and CAP enforcement without CDN configuration or custom code. It intercepts requests to /license.xml, fetches and caches your license from Supertab Connect, and validates Authorization: License tokens on automated requests.
  • Requirements: WordPress 6.4 or higher (self-hosted or WordPress VIP).
  • Plugin: Supertab Connect

Before You Start

You need:
  • A Supertab Connect merchant accountcontact sales to sign up
  • A Website registered in the dashboard — select WordPress as the integration type
  • Your Website URN — found in Website settings, looks like urn:stc:merchant:system:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

Install the Plugin

In your WordPress admin, go to Plugins → Add Plugin, search for Supertab Connect, install, and activate. The plugin will redirect you to its settings page on first activation.

Configure RSL

In Settings → Supertab Connect, paste your Website URN into the Website URN field and save. Once saved, visit https://yourdomain.com/license.xml to confirm your RSL license is being served.
If the license doesn’t reflect recent changes, your hosting stack may have a caching layer in front of WordPress. Purge the cache for /license.xml from your host’s control panel.

Configure CAP

1

Generate a Merchant API key

In the Supertab Connect dashboard:
  1. Open your Website Details
  2. Go to the API Keys section
  3. Click Generate new key
  4. Copy the generated key
Treat the Merchant API key as a secret. Do not expose it in frontend code or share it outside the WordPress admin environment.
2

Enable CAP in the plugin

In WordPress, go to Settings → Supertab Connect:
  1. Find the License Verification section
  2. Paste the generated Merchant API key into the Merchant API key field
  3. Click the Enable CAP checkbox
  4. Click Save Changes
3

Configure Active Paths

By default, CAP protects your entire site using a single * wildcard path. You can narrow protection to specific sections of your site.
  1. In the Active Paths section, review the default path
  2. Optionally remove * and add specific path patterns
  3. Click Add Path to add additional patterns
  4. Click Save Changes
Path pattern examples:
PatternMatches
*Entire site (default)
blog/*All URLs under /blog/
premium/*All URLs under /premium/
pricingOnly the /pricing page
Paths support * for wildcards. Both /sample-page and /sample-page/ (trailing slash) are treated as the same path.
4

Verify the deployment

After saving the plugin settings:
  1. Return to the Supertab Connect dashboard
  2. Use Verify Deployment for CAP
  3. Confirm that verification succeeds
Once verification passes, CAP is active on your WordPress site.

Update robots.txt

Add a License: directive to your robots.txt so crawlers can discover your license:
License: https://yourdomain.com/license.xml
The URL must be fully qualified. Place it at the top of the file, before any User-agent: directives.

Publishing New Versions

When you publish a new version of your RSL license, click Deploy in the RSL Editor and choose Manual Deployment. Follow the on-screen steps to refresh the license on your WordPress site.
If you can’t see the latest version at /license.xml, your hosting environment may have additional caching layers. You may need to purge these from your host’s control panel.

Troubleshooting

ProblemWhat to check
license.xml returns 404Confirm the Website URN is saved correctly in plugin settings
CAP is not enforcingConfirm the CAP checkbox is enabled, the API key matches the current key in the dashboard, and the plugin settings were saved
License shows stale contentPurge your hosting cache for /license.xml
Human visitors are being blockedCheck that your WordPress permalink settings are not interfering with the plugin’s request interception
CAP verification fails in dashboardConfirm the Merchant API key in WordPress matches the current key in Supertab Connect

Next Steps

Acquire Licenses

Test the protected flow by obtaining a license token and making a licensed request.

Crawler Authentication Protocol

How CAP works, what it enforces, and what it leaves to you.