<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://www.loteriamanises.com");

define('LOTERIA', true);
include_once("config.php");

//dependiendo del tipo de sorteo que sea lo mandamos a una pagina o otra
if($CONFIGURACION["sorteo_defecto"]=="NI"){
	//header('Location: loteria-nino.php');
	include_once("loteria-nino.php");
}
else{
	//header('Location: loteria-navidad.php');
	include_once("loteria-navidad.php");
}
?>