<?php
if (substr($_SERVER['SERVER_NAME'],0,4) == "www."){
	$location = "Location: http://".substr($_SERVER['SERVER_NAME'],4).$_SERVER[REQUEST_URI];
	header($location);
}

@ini_set ('display_errors', 1);
/*
if(isset($_GET["connect"])){
setcookie("poweroff", "true", time()+7200);
}
if($_COOKIE["poweroff"]=="true"){
*/
define('WP_USE_THEMES', true);
require('./wp-blog-header.php');
/*
}else{
header('HTTP/1.1 503 Service Temporarily Unavailable');
header('Status: 503 Service Temporarily Unavailable');
header('Retry-After: 7200'); // in seconds
echo '<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Karbantartás. Néz vissza később!</title></head><body>';
echo '<div style="width:100%;text-align:center;"><img src="static/poweroff.jpg" style="position:relative;top:200px;"></div>';
}
*/