The phpheader function is commonly used for http header settings. Common http header settings for the phpheader function, and the okheader ('http1. required OK); set a 404 header: header ('http1. 1404 NotFound); set the address to be permanently redirected to common http header settings of the php header function, phpheader function
// Okheader ('http/1.1 200 OK '); // set a 404 header: header ('http/1.1 404 Not Found '); // Set the address to be Permanently redirected header ('http/1.1 301 Moved Permanently '); // go to a new address header ('Location: http://www.example.org /'); // File delay redirection: header ('refresh: 10; url = http://www.example.org/'); print 'You will be redirected in 10 seconds'; // of course, you can also use html syntax to implement //
// Override X-Powered-By: PHP: header ('x-Powered-By: PHP/4.4.0 '); header ('x-Powered-: brain/0.6b '); // The header of the document language ('content-language: en'); // notify the browser of the last modification time $ time = time ()-60; // or filemtime ($ fn), etcheader ('last-Modified :'. gmdate ('d, d m y h: I: S', $ time ). 'gmt'); // tell the browser that the document Content has Not changed the header ('http/1.1 304 Not modified'); // set the Content Length header ('content-Length: 1234 '); // Set it to a download header ('content-Type: application/octet-stream'); header ('content-Disposition: attachment; filename=”example.zip "'); header ('content-Transfer-Encoding: binary '); // load the file to send: readfile('example.zip'); // disable the Cache header ('cache-Control: no-cache, no-store, max-age = 0, must-revalidate '); header ('expires: Mon, 26 Jul 1997 05:00:00 GMT '); // Date in the pastheader ('pragma: no-cache'); // set the Content Type: header ('content-Type: text/html; charset = ISO-8859-1 ′); header ('content-Type: text/html; charset = utf-8 '); header ('content-Type: text/plain '); // plain text format header ('content-Type: image/jpeg '); // JPG *** header ('content-Type: application/zip '); // ZIP file header ('content-Type: application/pdf '); // pdf file header ('content-Type: audio/mpeg '); // Audio File header ('content-Type: application/x-shockw ** e-Flash '); // Flash animation // display the login dialog box header ('http/1.1 401 unauthorized'); header ('www-Authenticate: Basic realm = "Top Secret "'); print 'text that will be displayed if the user hits cancel or '; print 'enters wrong login data ';
Common http header settings for the http://www.bkjia.com/PHPjc/1022310.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1022310.htmlTechArticlephp header function, phpheader function // okheader ('http/1.1 200 OK '); // set a 404 header: header ('http/1.1 404 Not Found '); // Set the address to be permanently redirected...