1.  
  2. <?php 
  3. header("HTTP/1.0 404 Not Found"); 
  4. ?>  
  5.  
  6. <?php 
  7. header("Status: 404 Not Found"); 
  8. ?>  
  9.  
  10. <?php 
  11. header("Location: http://www.example.com/"); /* Redirect browser */ 
  12. exit
  13. ?>  
  14.  
  15.  
  16. <?php 
  17. header('WWW-Authenticate: Negotiate'); 
  18. header('WWW-Authenticate: NTLM', false); 
  19. ?>  

 

 

 
  
  1. @header("Expires: -1"); 
  2.     @header("Cache-Control: no-store, private, post-check=0, pre-check=0, max-age=0", FALSE); 
  3.     @header("Pragma: no-cache"); 
  4.     @header("Content-type: application/xml; charset=$_SC[charset]");