Possible Duplicate:
“Warning: Headers already sent” in PHP
I have following piece of code to do the 301 redirect at the top without any spaces and nothing above this code, but its giving the error,
Warning: Cannot modify header information - headers already sent by
<?php
require_once('../../config.php');
header("HTTP/1.1 301 Moved Permanently");
header("location: http://www.myapp.com/courses/mycourse-new.php");
?>
I tried using ob_start, but didn't work. I have done 301 for many files without any issues. how to resolve this issue.