, i.e. AFTER this script executes, so the query returned null
// on every prerendered page and the classifier stamped
// "noindex, follow" into the DOM of real, unique pages. The prerenderer
// now stamps data-prerendered="1" on , which exists before any
// script runs. The canonical check is kept as a secondary guard.
var docEl = document.documentElement;
if (docEl && docEl.getAttribute('data-prerendered') === '1') return;
if (document.querySelector('link[rel="canonical"]')) return;
var origin = 'https://terraincognitaacademy.com';
var path = location.pathname || '/';
var malformedAbsoluteTarget = null;
try { path = decodeURIComponent(path); } catch (_) {}
path = path.replace(/^\/+https?:\/+((www\.)?terraincognitaacademy\.com)(?=\/|$)/i, function(){
malformedAbsoluteTarget = true;
return '';
});
if (!path) path = '/';
if (path.length > 1) path = path.replace(/\/+$/, '');
var canonical = origin + path;
// Routes that must NEVER be indexed (private/auth-gated/redirect aliases).
var NOINDEX_PREFIXES = [
'/spell-launcher','/instructor/apply','/course-finder','/dashboard','/admin',
'/checkout','/cart','/auth','/login','/signup','/messages','/profile/edit',
'/profile/settings','/settings','/student','/achievements','/my-invoices',
'/forum/new-topic','/forum/bookmarks','/instructor/earnings','/instructor/analytics',
'/instructor/courses','/instructor/content-library','/category-management',
'/gift-success','/claim-gift','/shop/success','/shop/download','/install','/search',
'/spirit-alignment-codex/result','/directory/manage','/directory/search'
];
// Legacy aliases that must canonicalize to current URLs (and stay noindex on the alias itself).
var REDIRECT_MAP = {
'/course-finder': '/spirit-alignment-codex',
'/your-path-assistant': '/spirit-alignment-codex',
'/spiritual-path-assistant': '/spirit-alignment-codex',
'/spirit-codex': '/spirit-alignment-codex',
'/codex': '/spirit-alignment-codex',
'/spirit-encyclopedia': '/encyclopedia',
'/ritual-design-system': '/rituals',
'/blog-posts': '/blog',
'/power-points': '/spiritual-world',
'/temple-teachings': '/forum',
'/affiliate': '/ambassador',
'/affiliates': '/ambassador',
'/affiliate/register': '/ambassador',
'/category/free': '/courses/category/free-spiritual-courses',
'/spiritual-development/usa': '/spiritual-development/united-states',
'/spiritual-development/uk': '/spiritual-development/united-kingdom',
'/spiritual-development/uae': '/spiritual-development/united-arab-emirates'
};
// Hub/listing routes that share filesystem space with item children
// (e.g. /courses cannot exist as a static file because dist/courses/
// is a directory). Inject SEO synchronously so Googlebot and SPA
// visitors get the correct title/description even when served from
// the root SPA fallback shell.
var HUB_SEO = {
'/courses': {
title: 'Occult Courses Online | Terra Incognita Academy',
description: 'Learn witchcraft, ceremonial magic, hermeticism and chaos magick with 300+ occult courses online. Expert instructors, lifetime access. Start today.'
},
'/shop': {
title: 'Grimoires & Occult PDF Books | Terra Incognita Academy',
description: 'Download grimoires, occult books and esoteric PDFs: Goetia, Solomonic magic, Book of Shadows, angelic and planetary rituals. Instant delivery, lifetime access.'
},
'/bundles': {
title: 'Occult Course Bundles | Terra Incognita Academy',
description: 'Save up to 50% on occult course bundles: witchcraft, ceremonial magic, hermeticism and evocation packages. Lifetime access, one payment.'
},
'/forum': {
title: 'Witchcraft & Occult Forum | Terra Incognita Academy',
description: 'Join our witchcraft forum and occult community. Discuss grimoires, rituals, evocation, meditation and esoteric practice with practitioners worldwide.'
},
'/blog': {
title: 'Blog — Spiritual Teachings | Terra Incognita Academy',
description: 'Read in-depth articles on spirit work, ritual practice, grimoire study and consciousness development from Terra Incognita Academy instructors.'
},
'/encyclopedia': {
title: 'Spirit Compatibility Guide | Terra Incognita Academy',
description: 'Explore the encyclopedia of spirits, domains, archetypes and intents. A comprehensive reference for serious practitioners at Terra Incognita Academy.'
},
'/rituals': {
title: 'Ritual Hub — Blueprints | Terra Incognita Academy',
description: 'Design personalized rituals with the Terra Incognita Academy Ritual Hub. Step-by-step blueprints for spirit work, devotion and transformation.'
},
'/glossary': {
title: 'Spiritual & Magical Glossary | Terra Incognita Academy',
description: 'Definitions of key spiritual, magical and esoteric terms used across courses, grimoires and rituals at Terra Incognita Academy.'
},
'/spiritual-world': {
title: 'Sacred Geography & Power Points | Terra Incognita',
description: 'Explore the spiritual world: power points, sacred sites and the geography of spirit. Curated by Terra Incognita Academy.'
},
'/instructors': {
title: 'Meet Our Teachers | Terra Incognita Academy',
description: 'Meet the experienced spiritual instructors of Terra Incognita Academy. Practitioners, scholars and guides leading our courses.'
},
'/pillars': {
title: 'Pillar Hubs — Goetia, Angels & Deities | Terra Incognita Academy',
description: 'Explore our pillar hubs: the 72 Goetic demons, the Shem HaMephorash angels, the Olympic spirits and the Norse, Celtic and Greek deities, with linked courses, grimoires and articles.'
},
'/about': {
title: 'About Us — Our Mission | Terra Incognita Academy',
description: 'Learn about Terra Incognita Academy: our mission to deliver rigorous, benevolent spiritual education for serious modern practitioners.'
}
};
// Indexable-from-the-shell allowlist.
//
// IMPORTANT: this list only ever applies to a URL that has NO prerendered
// HTML file (the script early-returns when a canonical is already present).
// A URL served by the generic shell has the homepage title and no unique
// content, so declaring it indexable produced thousands of identical
// "index,follow" pages — exactly the "Duplicate: Google chose a different
// canonical" and "Crawled - currently not indexed" reports.
//
// Therefore ONLY stable hub/static routes stay indexable here. Every
// item-level route (listings, cities, tags, topics, courses, products,
// profiles, certificates, …) must earn indexability by having a real
// prerendered page; without one it is noindex,follow.
var INDEX_PATTERNS = [
/^\/$/,
/^\/courses$/, /^\/shop$/, /^\/bundles$/, /^\/ebook-bundles$/, /^\/forum$/,
/^\/blog$/, /^\/encyclopedia$/, /^\/encyclopedia\/spirits$/,
/^\/spiritual-world$/, /^\/spirit-alignment-codex$/,
/^\/(theurgy|evocation|spirit-guides|spirit-communication)$/,
/^\/answers$/, /^\/glossary$/, /^\/compendium$/,
/^\/rituals$/, /^\/ritual-builder$/,
/^\/about$/, /^\/about\/faculty$/, /^\/contact$/, /^\/ambassador$/, /^\/instructors$/,
/^\/free-ebook$/, /^\/members$/, /^\/declaration$/, /^\/experienced-practitioners$/,
/^\/become-instructor$/, /^\/standing-faq$/, /^\/platform$/, /^\/sitemap$/, /^\/rss$/,
/^\/academy-transfer$/, /^\/accredited-spiritual-program$/, /^\/updates$/,
/^\/[a-z0-9-]+-school$/, /^\/certified-paths$/,
/^\/(infernal-healer|power-invoker|wealth-architect|infernal-strategist|master-of-knowledge|shadow-alchemist|master-of-influence|infernal-lover|infernal-protector|pathbreaker|infernal-seer|infernal-sovereign)$/,
/^\/privacy-policy$/, /^\/terms-of-service$/, /^\/cookie-policy$/,
/^\/refund-policy$/, /^\/disclaimer$/, /^\/copyright$/,
/^\/verify-certificate$/,
/^\/tags$/, /^\/pillars$/,
/^\/directory$/, /^\/directory\/pricing$/
];
var isNoindex = NOINDEX_PREFIXES.some(function(p){
return path === p || path.indexOf(p + '/') === 0;
});
var redirectTarget = REDIRECT_MAP[path];
// Pattern-based legacy redirects (must mirror the Cloudflare worker
// so direct browser hits behave identically to crawler hits).
if (!redirectTarget) {
var m;
if ((m = path.match(/^\/shop\/product\/(.+)$/))) redirectTarget = '/shop/' + m[1];
else if ((m = path.match(/^\/category\/(.+)$/))) redirectTarget = '/courses/category/' + m[1];
else if ((m = path.match(/^\/bundle\/(.+)$/))) redirectTarget = '/bundles/' + m[1];
else if ((m = path.match(/^\/profile\/(?!settings|edit)([^/]+)$/))) redirectTarget = '/u/' + m[1];
}
if (redirectTarget) {
canonical = origin + redirectTarget;
isNoindex = true; // alias itself is not indexable
// Actually navigate real visitors (bots see canonical+noindex above).
// Lovable hosting has no edge redirects, so we do it client-side.
try {
var ua = (navigator && navigator.userAgent) || '';
var isBot = /bot|crawler|spider|crawling|facebookexternalhit|slurp|bingpreview|linkedinbot|whatsapp|telegram/i.test(ua);
if (!isBot) {
window.location.replace(redirectTarget + (window.location.search || '') + (window.location.hash || ''));
}
} catch (e) {}
}
var isKnownGood = !isNoindex && INDEX_PATTERNS.some(function(re){ return re.test(path); });
var link = document.createElement('link');
link.setAttribute('rel', 'canonical');
link.setAttribute('href', canonical);
document.head.appendChild(link);
var ogUrl = document.createElement('meta');
ogUrl.setAttribute('property', 'og:url');
ogUrl.setAttribute('content', canonical);
document.head.appendChild(ogUrl);
var twUrl = document.createElement('meta');
twUrl.setAttribute('name', 'twitter:url');
twUrl.setAttribute('content', canonical);
document.head.appendChild(twUrl);
// Apply final robots state synchronously. Known public routes get index;
// private routes, redirect aliases, and unknown paths get noindex.
var existing = document.querySelectorAll('meta[name="robots"], meta[name="googlebot"]');
for (var i = 0; i < existing.length; i++) existing[i].parentNode.removeChild(existing[i]);
var robotsValue = isKnownGood
? 'index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1'
: 'noindex, follow';
var robots = document.createElement('meta');
robots.setAttribute('name', 'robots');
robots.setAttribute('content', robotsValue);
document.head.appendChild(robots);
var gbot = document.createElement('meta');
gbot.setAttribute('name', 'googlebot');
gbot.setAttribute('content', robotsValue);
document.head.appendChild(gbot);
var cleanupSeoDuplicates = function(){
var selectors = ['title', 'meta[name="title"]', 'meta[name="description"]'];
for (var s = 0; s < selectors.length; s++) {
var nodes = document.head.querySelectorAll(selectors[s]);
for (var n = 0; n < nodes.length - 1; n++) {
if (nodes[n] && nodes[n].parentNode) nodes[n].parentNode.removeChild(nodes[n]);
}
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', cleanupSeoDuplicates, { once: true });
} else {
cleanupSeoDuplicates();
}
setTimeout(cleanupSeoDuplicates, 0);
// Synchronous hub-route SEO injection. Hub routes (e.g. /courses,
// /shop) cannot have prerendered extensionless static files because
// their slug exists as a directory (dist/courses/foo.html). Inject
// unique title + description here so Googlebot's first-paint scan
// sees per-route SEO instead of the homepage shell defaults.
var hub = HUB_SEO[path];
if (hub) {
try {
var existingTitles = document.head.querySelectorAll('title');
for (var t = 0; t < existingTitles.length; t++) existingTitles[t].parentNode.removeChild(existingTitles[t]);
var titleEl = document.createElement('title');
titleEl.textContent = hub.title;
document.head.appendChild(titleEl);
var metaSelectors = ['meta[name="title"]','meta[name="description"]','meta[property="og:title"]','meta[property="og:description"]','meta[name="twitter:title"]','meta[name="twitter:description"]'];
for (var ms = 0; ms < metaSelectors.length; ms++) {
var existingMetas = document.head.querySelectorAll(metaSelectors[ms]);
for (var em = 0; em < existingMetas.length; em++) existingMetas[em].parentNode.removeChild(existingMetas[em]);
}
function appendMeta(attr, name, content){
var el = document.createElement('meta');
el.setAttribute(attr, name);
el.setAttribute('content', content);
document.head.appendChild(el);
}
appendMeta('name', 'title', hub.title);
appendMeta('name', 'description', hub.description);
appendMeta('property', 'og:title', hub.title);
appendMeta('property', 'og:description', hub.description);
appendMeta('name', 'twitter:title', hub.title);
appendMeta('name', 'twitter:description', hub.description);
} catch(_) {}
}
// For redirect aliases, perform a client-side hard redirect after canonical
// is in place so users actually land on the canonical URL.
if (malformedAbsoluteTarget) {
try { location.replace(canonical + location.search + location.hash); } catch(_) {}
}
if (redirectTarget && redirectTarget !== path) {
try { location.replace(origin + redirectTarget + location.search + location.hash); } catch(_) {}
}
} catch (e) { /* noop */ }
})();
metaphysical & occult shops in spain
The exploration of metaphysical and occult shops in Spain represents a vital encounter with a landscape rich in syncretic history, where ancient Mediterranean wisdom intersects with the profound mystical traditions of the Iberian Peninsula. Within the curriculum of Terra Incognita Academy, these establishments are viewed not merely as commercial venues, but as modern repositories of theurgical tools and ancestral lore. For the serious student of the esoteric, identifying these physical and digital spaces is essential for sourcing the consecrated materials required for ceremonial magic and ritual practice. Spain’s unique position as a historical crossroads of Hermeticism, Kabbalah, and folk magic ensures that these shops provide a unique material foundation for practitioners seeking to align their terrestrial workings with the celestial hierarchies and the benevolent forces of the cosmos.
Engagement with the Spanish occult landscape offers students a practical application of the theoretical knowledge found in our extensive library of ebooks and digital downloads. By understanding the regional variations in magical tools—from specific botanical curios to hand-crafted talismans—practitioners can deepen their connection to the Compendium articles that detail the diverse natures of spirits and planetary intelligences. These shops serve as the bridge between abstract study and the tangible manifestation of will. For those enrolled in our specialized courses, navigating these resources allows for a more nuanced approach to alchemy and energy work, ensuring that the physical components of their practice are of the highest spiritual integrity and historical authenticity.
Furthermore, the study of Spain’s metaphysical commerce fosters a vibrant communal exchange within our forum discussions, where students share insights on regional traditions and the acquisition of rare ritual items. This collective inquiry supports a broader understanding of how local culture shapes universal esoteric practice. At Terra Incognita Academy, we encourage the benevolent exploration of these spaces as a means to harmonize one's environment and refine the soul's ascent. Whether through the acquisition of specialized literature or the ritual implements necessary for high magic, these Spanish hubs remain integral to the modern magician’s journey, facilitating a deeper resonance with the spirits described in our archives and the wisdom preserved throughout the ages.
Directory Listings
Alumbra a toda vela S.L. — Alumbra a toda vela S.L. is a Metaphysical & Occult Shop in Valencia, Spain, located at Av. del Puerto, 211, bajo B, in the Camins al Grau district. Its di
Tienda esotérica The Sacred Wolf Barcelona — Tienda esotérica The Sacred Wolf Barcelona is a Metaphysical & Occult Shop in Barcelona, Spain. Located at Carrer de Tolrà, 29, in the HortaGuinardó distri
Las Velas de Miriam — Las Velas de Miriam is a specialized metaphysical & occult shop located in the vibrant city of Santa Cruz de Tenerife, Spain. Situated in the heart of the
Toque Místico — Toque Místico is a Metaphysical & Occult Shop in Madrid, Spain. Located at Calle del Gral. Ricardos, 65, in the Carabanchel district, it provides a dedicat
Tienda esotérica Viejo San Lázaro — Tienda esotérica Viejo San Lázaro is a distinguished metaphysical & occult shop located in the city of Terrassa, Spain. Serving as a dedicated hub for thos
La Tienda de Las Hadas Esotérica — La Tienda de Las Hadas Esotérica is a Metaphysical & Occult Shop in San Juan de Aznalfarache, Spain. Located at C. José Payán Garrido, 1, 41920 San Juan de
El Alquimista — El Alquimista is a Metaphysical & Occult Shop in Madrid, Spain, located at Calle de la Magdalena, 12, in the central 28012 district. It provides a dedicate
Asociación esotérica Odin — Asociación esotérica Odin is a dedicated metaphysical & occult shop located in the historic city of Santiago de Compostela, Spain. Situated within the A Co
Morgana Tienda Esotérica — Morgana Tienda Esotérica is a dedicated metaphysical & occult shop located in the coastal city of A Coruña, Spain. Serving as a specialized hub for those i
Tienda Esotérica Kali — Tienda Esotérica Kali is a premier metaphysical & occult shop located in Guía de Isora, Spain. Situated on the scenic island of Tenerife, this specialized
Tienda Esotérica Unalome — Tienda Esotérica Unalome is a premier metaphysical & occult shop located in the historic city of Montilla, Spain. Situated within the province of Córdoba,
Chandra Esotérica — Chandra Esotérica is a premier metaphysical & occult shop in A Coruña, Spain. Serving as a dedicated hub for those interested in spiritual exploration and
MANDALA - Tienda étnica y esotérica — MANDALA Tienda étnica y esotérica is a Metaphysical & Occult Shop in Málaga, Spain, located in the Ciudad Jardín area. Its Spanish name identifies it as a
LUNAZAM — LUNAZAM is a Metaphysical & Occult Shop in Madrid, Spain, located at C. de Alberto Aguilera, 3, Centro, 28015 Madrid. Its central address makes it a releva
Santería Milagrosa - Sol — Santería Milagrosa Sol is a Metaphysical & Occult Shop in Madrid, Spain, located in the central Centro district. Its address is Calle de San Alberto, 1, a
Zi-Enki — ZiEnki is a Metaphysical & Occult Shop in Camas, Spain, located at C. Segura, 1, 41900 Camas, Sevilla. It provides a dedicated setting for people intereste
Mística — Mística is a dedicated metaphysical & occult shop located in the heart of Gijón, Asturias, Spain. As a specialized hub for those exploring the spiritual an
TIENDA ESOTÉRICA "LA MAGIA DE LA LUNA" — Tienda Esotérica "La Magia de la Luna" is a premier metaphysical & occult shop in Valladolid, Spain. Situated in the heart of the Castile and León region,
SOUL MULTIUSOS SL — SOUL MULTIUSOS SL is a Metaphysical & Occult Shop in Barcelona, Spain. Located at Carrer de València, 435, Bajo, in the Eixample district, it offers a conv
Tienda Esotérica EL PÉNDULO — Tienda Esotérica EL PÉNDULO is a Metaphysical & Occult Shop in Sevilla, Spain. Located at Calle Maimónides s/n, Edf. Nuevo Torneo, 41009 Sevilla, it provid
Tienda Esotérica | En Tierras de Lunas — Tienda Esotérica | En Tierras de Lunas is a Metaphysical & Occult Shop in Sevilla, Spain. Located at C. Periodista José Couso, 10, 41009 Sevilla, the busin
Tienda Esotérica en Málaga | Moon Amour — Tienda Esotérica en Málaga | Moon Amour is a Metaphysical & Occult Shop located in Alhaurín de la Torre, Spain. Situated at Cam. del Tambor, 16, 29130 Alha
Néctar de Lotus — Néctar de Lotus is a dedicated Metaphysical & Occult Shop located in Leganés, Spain. As a specialized center for those exploring the deeper aspects of exis
Goetia Boutique Esotérica🔮 — Goetia Boutique Esotérica is a Metaphysical & Occult Shop in Barcelona, Spain, located at Av. de Mistral, 42, Loc 2, in the Eixample district. It offers a
Mystic Things — Mystic Things is a dedicated metaphysical & occult shop in Sabadell, Spain. Serving as a local hub for those interested in the esoteric arts, the establish
La Presencia Mágica — La Presencia Mágica is a Metaphysical & Occult Shop in València, Spain, located at C. del Mar, 11, Bajo, in the historic Ciutat Vella district. It provides
Tienda Esotérica Changó — Tienda Esotérica Changó is a Metaphysical & Occult Shop in València, Spain, located in the central district of Extramurs. Its directory listing may interes
Tienda Esotérica Valencia La Puerta Violeta — Tienda Esotérica Valencia La Puerta Violeta is a Metaphysical & Occult Shop in València, Spain. Located at Los Centelles, 36, in the L’Eixample district, i
Inciensos de Sevilla — Inciensos de Sevilla is a Metaphysical & Occult Shop in Sevilla, Spain, located at C. Águilas, 14, in the city’s Casco Antiguo district. It offers a dedica
Mystik (esotérico) — Mystik (esotérico) is a premier metaphysical & occult shop located in the vibrant town of Armilla, within the Granada province of Spain. As a dedicated spa
Inari Sobrenatural — Inari Sobrenatural is a prominent metaphysical & occult shop in Vigo, Spain, serving as a dedicated resource for the local spiritual community. Located in
Mystic Natura — Mystic Natura is a dedicated metaphysical & occult shop located in the town of Fernán Núñez, Spain. Situated within the province of Córdoba, this establish
Tienda esotérica ANANDA. — Tienda esotérica ANANDA is a Metaphysical & Occult Shop in València, Spain, located in the Benimaclet area of the city. It provides a dedicated point of re
Depuralma | Tienda Esotérica y Terapias Energéticas — Depuralma | Tienda Esotérica y Terapias Energéticas is a dedicated metaphysical & occult shop located in Maracena, Spain. Serving the wider Granada provinc