Stay connected with us and get the latest updates, news, and new posts directly on WhatsApp.
Open WhatsApp Channel⚡ Fast • 🔒 Secure • 🎨 Modern URL Shortening
A professional, responsive URL shortening service powered by Cloudflare Workers.
URL shortening in milliseconds
Shareable and memorable URLs
Copy button for generated URLs
Works on all devices
Optional security integration
Beautiful light/dark themes
Open Cloudflare Dashboard → Workers & Pages → KV and create a new KV namespace.
Choose any name you like. For example:
links
Go to Settings → Variables → KV Namespace Bindings and add a KV binding.
Variable name:
LINKS
✅ The Worker code expects the KV binding variable to be named LINKS.
Open the Worker source file and copy the complete Worker code. Replace existing code with copied code.
Main settings are inside the config object:
const config = {
no_ref: "off",
theme: "theme/captcha",
cors: "on",
unique_link: true,
custom_link: false,
safe_browsing_api_key: "",
expiration_ttl: 0,
captcha: {
enabled: true,
require_on_create: true,
require_on_access: true,
timeout: 5000,
fallback_on_error: true,
max_retries: 2
}
};
After KV binding and Worker code are ready: Save → Deploy. Then test URL shortening.
| Option | Description |
|---|---|
no_ref | Controls referrer hiding |
theme | Homepage theme |
cors | Enables CORS |
unique_link | Reuses same short URL for same long URL |
custom_link | Enables custom short URLs |
safe_browsing_api_key | Optional URL safety checking |
expiration_ttl | Optional link expiration in seconds |
captcha.enabled | Enables/disables CAPTCHA |
captcha.require_on_create | CAPTCHA for link creation |
💜 URLShorter — Fast. Secure. Simple.
Built by Abdullah Bin Shahid
Loading...