A simple, fast redirect service hosted on Vercel as a static website with a beautiful loading animation.
- No cloud functions - Pure static HTML, CSS, and JavaScript
- Instant deploys - No build step needed
- Fast redirects - No server-side processing
- Instant updates - Changes take effect immediately, no DNS propagation delays
- Beautiful UX - Nice loading animation while redirecting
Edit index.html and change this line:
const REDIRECT_URL = 'https://example.com/your-target-path';Replace https://example.com/your-target-path with your actual target URL.
Option A: Using GitHub (Recommended)
- Push this code to a GitHub repository
- Go to vercel.com
- Click "New Project"
- Select your repository
- Click "Deploy" - that's it!
Option B: Using Vercel CLI
npm install -g vercel
vercelOption C: Drag & Drop
- Go to vercel.com
- Drag your project folder onto the dashboard
- Done!
In your domain registrar's DNS settings:
- Add a
CNAMErecord pointing to your Vercel deployment - Or use Vercel's custom domain feature in your project settings
- Configuration typically takes a few minutes
- Visitor lands on your domain
- The static HTML page loads with a loading animation
- After 1 second, the page automatically redirects to your target URL
- If the redirect fails, visitors can click the fallback button
You can customize the appearance by editing the <style> section in index.html:
- Change colors: Modify the gradient in the
bodybackground - Change animation speed: Adjust the
animation: spin 0.8svalue - Change redirect delay: Modify the
setTimeout(1000)value (in milliseconds) - Change the container: Customize the
.containerstyles
Simply open index.html in your browser to test. The redirect will work after 1 second.
Track redirect traffic through:
- Your target domain's analytics (they'll see the referrer)
- Vercel Analytics Dashboard
- Server logs at your target destination
MIT