# Aktifkan mod_rewrite
RewriteEngine On

# 1️⃣ KECUALIKAN robots.txt, sitemap, dan file verifikasi Google
RewriteCond %{REQUEST_URI} ^/(robots\.txt|sitemap(_index)?\.xml|sitemap-.*\.xml|google[^/]*\.html)$ [NC]
RewriteRule ^ - [L]

# 2️⃣ JANGAN REDIRECT JIKA SUDAH DI HALAMAN TUJUAN
RewriteCond %{REQUEST_URI} !^/cookie-dough-too-sticky/?$ [NC]

# 3️⃣ REDIRECT SEMUA URL LAIN KE HALAMAN TUJUAN
RewriteRule ^ https://www.gretchensbakery.com/cookie-dough-too-sticky/ [R=301,L]
