<!--
    <script>
        (function () {
            // 1) Root *ohne* Sprach-Slug bestimmen (rein clientseitig)
            var origin = window.location.origin; // z.B. https://www.aws-cost-engineering.de
            var fixedRoot = origin + '/wp-json/';

            // 2) CF7 global & pro Formular überschreiben (nachdem CF7 initialisiert hat)
            function applyCF7Root() {
                if (window.wpcf7) {
                    if (window.wpcf7.api) {
                        window.wpcf7.api.root = fixedRoot;
                    }
                    // pro Formular-Instanz
                    document.querySelectorAll('.wpcf7 form').forEach(function (form) {
                        if (form.wpcf7 && form.wpcf7.api) {
                            form.wpcf7.api.root = fixedRoot;
                        }
                    });
                    console.log('CF7 root patched to →', fixedRoot);
                }
            }

            // 3) *Sicherheitsnetz*: fetch-Aufrufe auf /en/wp-json/ hart korrigieren
            //    (falls ein Plugin/Cache den CF7-Root nochmal überschreibt)
            var _fetch = window.fetch;
            window.fetch = function(input, init) {
                // String-URL
                if (typeof input === 'string' && input.indexOf('/wp-json/contact-form-7/') !== -1) {
                    input = input.replace('/en/wp-json/', '/wp-json/');
                }
                // Request-Objekt
                else if (input && typeof input === 'object' && input.url && input.url.indexOf('/wp-json/contact-form-7/') !== -1) {
                    input = new Request(input.url.replace('/en/wp-json/', '/wp-json/'), input);
                }
                return _fetch(input, init);
            };

            // anwenden nach DOMReady
            if (document.readyState === 'loading') {
                document.addEventListener('DOMContentLoaded', applyCF7Root);
            } else {
                applyCF7Root();
            }
        })();
    </script>
-->
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//www.aws-cost-engineering.de/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://www.aws-cost-engineering.de/page-sitemap.xml</loc>
		<lastmod>2026-03-30T11:41:13+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->