Header("Location: "); issue

Hi, I am having an issue with > <?php header("Location: "); ?>

My pages are not being redirected what-so-ever.

Here is my code:

<?php session_start(); ?> <?php require_once("status.php"); $protocol = "https"; $server = "crossfire151.gq"; if($maintenance == "1") { ?>
    <?php

include(“maintenance/maintenance.php”);
}
else {
header("Location: " . ‘’ . $protocol . ‘://’ . $server . “/forum/”);
}
?>

Thanks in advance, this is really frustrating me :frowning:

Nevermind, I managed to fix the issue.

#facepalm

Try this

<?php
session_start();
require_once("status.php");
$protocol = "https";
$server = "crossfire151.gq";
if($maintenance == "1"){
include("maintenance/maintenance.php");	
}else {
header('Location: ' . $protocol . '://' . $server . '/forum/');
}
?>