Free LLMs.txt Generator & Endpoint
Extracto
Create and update your site's LLMs.txt instantly for free. Access our endpoint for real-time CDN served LLMs.txt generation.
Resumen
Resumen Principal
llms.page se presenta como un servicio innovador y gratuito diseñado para automatizar la generación y el alojamiento del archivo llms.txt
, un protocolo emergente esencial para la interacción entre sitios web y rastreadores de Modelos de Lenguaje Grandes (LLM). Esta plataforma elimina la necesidad de que los propietarios de dominios gestionen manualmente este archivo, proporcionando una solución de cero mantenimiento que garantiza que el llms.txt
esté siempre actualizado, accesible y optimizado para el rendimiento global. Al utilizar un endpoint CDN público, como https://get.llms.page/{your-domain.com}/llms.txt
, el servicio asegura una disponibilidad rápida y fiable para los rastreadores de IA. Su propuesta de valor central reside en la conveniencia y eficiencia, ofreciendo un mecanismo simple para que los proveedores de IA comprendan dónde se encuentra el contenido y cómo puede ser accedido de manera responsable, facilitando así una mejor gobernanza de los datos en la era de la inteligencia artificial. Además de ser completamente gratuito, llms.page
destaca por su integración sencilla y su proceso de actualización automática basado en el análisis del contenido del sitio web.
Elementos Cl
Contenido
# LLMs Page **llms.page** is a free service that automatically generates a well-structured `llms.txt` file for your domain. Instead of writing and hosting it yourself, you can simply use our public CDN endpoint: ``` https://get.llms.page/{example.com}/llms.txt ``` This ensures your `llms.txt` is always up-to-date and available to AI/LLM crawlers. --- ## Why use llms.page? - **Zero maintenance** — No need to host or update `llms.txt` yourself - **Fast & reliable** — Served via a global CDN - **Always fresh** — Your site is parsed automatically to generate `llms.txt` - **Free & public** — No sign-up, no API keys, no limits - **Simple integration** — Just redirect or proxy to the generated file --- ## How to use ### Option 1 — Redirect Set up a redirect from `/llms.txt` on your domain to the generated endpoint: ``` /llms.txt → https://get.llms.page/{your-domain.com}/llms.txt ``` ### Option 2 — Proxy/Fetch Fetch the generated file from `llms.page` and serve it directly as `/llms.txt` from your server. --- ## Integration Examples ### Nginx ```nginx location = /llms.txt { return 302 https://get.llms.page/example.com/llms.txt; } ``` ### Apache ```apache Redirect 302 /llms.txt https://get.llms.page/example.com/llms.txt ``` ### Node.js (Express) ```js import express from "express"; import fetch from "node-fetch"; const app = express(); app.get("/llms.txt", async (req, res) => { const response = await fetch("https://get.llms.page/example.com/llms.txt"); const text = await response.text(); res.type("text/plain").send(text); }); app.listen(3000); ``` ### Next.js (App Router) ```js // app/llms.txt/route.js export async function GET() { const res = await fetch("https://get.llms.page/example.com/llms.txt"); const text = await res.text(); return new Response(text, { headers: { "Content-Type": "text/plain" }, }); } ``` ### Vercel Redirect ```json // vercel.json { "redirects": [ { "source": "/llms.txt", "destination": "https://get.llms.page/example.com/llms.txt", "permanent": true } ] } ``` ### Netlify and Cloudflare Redirects ``` /llms.txt https://get.llms.page/example.com/llms.txt 200 ``` ### Cloudflare Pages Worker ```js export default { async fetch(request, env) { if (new URL(request.url).pathname === "/llms.txt") { return fetch("https://get.llms.page/example.com/llms.txt"); } return new Response("Not Found", { status: 404 }); }, }; ``` --- ## About `llms.txt` Just like `robots.txt` guides search engines on which parts of a site to crawl, `llms.txt` is a convention for Large Language Model (LLM) crawlers. It tells AI providers **where your content is located and how it can be accessed**, helping them interact with your data responsibly. For more information, visit [https://llmstxt.org/](https://llmstxt.org/).