Skip to content

Instantly share code, notes, and snippets.

@steppefox
Created October 26, 2013 05:52
Show Gist options
  • Save steppefox/7165749 to your computer and use it in GitHub Desktop.
Save steppefox/7165749 to your computer and use it in GitHub Desktop.
PHP Headers

XLS (Excel) headers in php

header('Content-Type: application/force-download');
header('Content-Type: application/octet-stream');
header('Content-Type: application/download');
header('Content-Disposition: attachment;filename='.$fileName);
header('Content-Transfer-Encoding: binary');

301 Header

header('HTTP/1.1 301 Moved Permanently');
header('Location: http://'.$url, true, 301);
exit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment