🔥 Script para Ping Masivo (Copiar y Ejecutar)
// Ejecutar en la consola del navegador
const urls = [
'https://www.odoo-expertos.com/',
'https://www.odoo-expertos.com/odoo/',
'https://www.odoo-expertos.com/odoo-hosting/',
'https://www.odoo-expertos.com/odoo-ia/'
];
urls.forEach(url => {
fetch(`https://www.google.com/ping?sitemap=${url}`)
.then(() => console.log(`Pinged: ${url}`))
.catch(err => console.error(`Error: ${url}`));
});
🎯 IndexNow API - Indexación Instantánea
Para notificar instantáneamente a Bing y Yandex sobre páginas nuevas o actualizadas:
POST https://api.indexnow.org/indexnow
Content-Type: application/json
{
"host": "www.odoo-expertos.com",
"key": "YOUR_API_KEY",
"keyLocation": "https://www.odoo-expertos.com/YOUR_API_KEY.txt",
"urlList": [
"https://www.odoo-expertos.com/",
"https://www.odoo-expertos.com/odoo/",
"https://www.odoo-expertos.com/odoo-hosting/",
"https://www.odoo-expertos.com/odoo-ia/"
]
}