<?php
class Duizendpoot extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
//$this->View->setData('page_title', SITE_NAME);
// Load template view
//$this->View->render('v_duizendpoot');
//$this->View->render('v_home');
header("Location: https://www.resortouddorpduin.nl/nl/");
exit();
}
}