Div-idy SEO

Your Div-idy Site Is Invisible to Google

Div-idy is an AI-powered text-to-web platform that lets you create websites, games, and blogs by describing what you want. It is fast and fun, but the sites it generates render on the client side. When Googlebot visits your page, it sees an empty shell instead of your content.

If you want your Div-idy site to show up in Google search results, you need the rendered HTML to be available to crawlers.

What RndrKit Does

RndrKit handles bot traffic for your domain. When a search engine crawler visits, RndrKit renders the page in a headless browser and serves the fully rendered HTML. Human visitors go directly to your Div-idy site as usual.

Setup

Step 1: Find Your Div-idy Site URL

Div-idy gives every project a shareable live URL. This is your origin URL. You can find it in your Div-idy project dashboard.

If you have a custom domain on a paid Div-idy plan, you will need to disconnect it before using RndrKit (see Platform-Specific Notes below).

Step 2: Sign Up for RndrKit

Create your account at rndrkit.io.

Step 3: Add Your Domain

Click Add Domain in the RndrKit dashboard:

FieldExampleDescription
Custom Domainwww.example.comThe domain your visitors will use
Origin URLYour Div-idy project URLThe live URL from Div-idy

Step 4: Configure DNS

Create a CNAME record at your DNS provider:

TypeNameValueTTL
CNAMEwwwcname.rndrkit.ioAuto

If you are using Cloudflare, set the proxy status to DNS only (gray cloud).

See DNS Configuration for provider-specific instructions.

Step 5: Verify

# Bot request -- should return fully rendered HTML
curl -s -A "Googlebot/2.1" "https://www.example.com/" | head -50

# Human request -- should return your Div-idy site shell
curl -s "https://www.example.com/" | head -50

Platform-Specific Notes

Custom Domains on Div-idy

If you are using a custom domain through Div-idy's paid plan, you will need to remove it from Div-idy first. RndrKit needs to control the DNS for your custom domain. Use the default Div-idy project URL as your origin.

Status: Should Work

Div-idy generates client-side rendered websites, which is exactly what RndrKit is built for. The platform is relatively new and project URL formats may evolve. If you run into issues, check troubleshooting or reach out to support.

Single-Page vs. Multi-Page Sites

If your Div-idy project is a single page, RndrKit will pre-render that page. If you have built a multi-page site, make sure each page has a unique URL path so RndrKit can render and cache each one individually.

SEO Quick Wins

Once RndrKit is active, improve your search visibility by adding:

  • A descriptive title tag -- not just your project name
  • A meta description that summarizes your site
  • Open Graph tags so social media links display properly
  • Heading tags (h1, h2) to structure your content
  • Alt text on images

Verify It Works

curl -s -A "Googlebot/2.1" "https://www.example.com/" | head -100

You should see your page content in the response. If you see an empty page or errors, check troubleshooting.

Next Steps