Hello,
in the file in/inc/header.inc.php
I find this piece of code
//check correct hostname
$aUrl = parse_url( $site['url'] );
if( isset($_SERVER['HTTP_HOST']) and 0 != strcasecmp($_SERVER['HTTP_HOST'], $aUrl['host']) and 0 != strcasecmp($_SERVER['HTTP_HOST'], $aUrl['host'] . ':80') )
{
header( "Location:http://{$aUrl['host']}{$_SERVER['REQUEST_URI']}" );
exit;
}
I wonder what it is
because one of my page it displays an error because this code
Warning: Cannot modify header information - headers already sent by (output started at /home/me/public_html/index.php:1) in /home/me/public_html/mypage/inc/header.inc.php on line 125
So I wonder if I can delete
