<?php
/**
 * sitemap.xml 리다이렉트
 * Redirect to sitemap_index.php
 */

header('HTTP/1.1 301 Moved Permanently');
header('Location: /sitemap_index.php');
exit;
