Nexting Documentation

Learn how to deploy SEO-optimized pages on your domain using our proxy system. No code changes to your existing site required.

Why Proxy-Based Deployment?

Traditional SEO page deployment requires modifying your website's codebase, dealing with build processes, and potentially breaking existing functionality. Our proxy approach solves these problems.

Zero Risk to Your Site

Your existing pages remain untouched. The proxy only handles specific paths you define.

SEO-First Architecture

Pages are served with proper meta tags, canonical URLs, and fast response times.

Instant Updates

Edit content in our dashboard, changes go live immediately without any deployment.

Your Domain, Your Brand

Pages appear under your domain. Users see yourdomain.com/page, not ours.

The Basic Concept

When a user visits a proxied path on your domain, your hosting platform (Vercel, Netlify, etc.) transparently forwards the request to our servers. We return the SEO-optimized HTML, and your hosting platform sends it back to the user. The URL never changes.

User Browser
visits yourdomain.com/blog
Your Host
Vercel / Netlify / etc.
Nexting API
returns HTML content

URL Never Changes

The user's browser always shows your domain. The proxy happens server-side, completely invisible to visitors.

Quick Example

Here's a minimal Vercel configuration that proxies two paths:

vercel.json
{
  "rewrites": [
    {
      "source": "/blog/my-seo-article",
      "destination": "https://api.nexting.ai/proxy/abc123/blog/my-seo-article"
    },
    {
      "source": "/blog/another-page",
      "destination": "https://api.nexting.ai/proxy/abc123/blog/another-page"
    }
  ]
}

After adding this configuration and deploying, yourdomain.com/blog/my-seo-article will serve content from Nexting while keeping your domain in the URL bar.

Next Steps