PHP: sağ içerik türünü nasıl hizmet (dosya uzantısı bağlı?)?

2 Cevap php

Biraz CSS ve JS dosyaları gziplemek için aşağıdaki komut kullanıyorum. Bu güzel çalışıyor - Yanlış içerik-tipi (ve uygun uygulama / x-javascript) ile JS dosyaları hizmet için hariç. Nasıl doğru içerik türü hizmet etmek için PHP kodu artırabilirsiniz? Teşekkürler!

. Htaccess:

AddHandler application/x-httpd-php .css .js
php_value auto_prepend_file gzip.php

gzip.php:

<?php 
ob_start ("ob_gzhandler");
header("Content-type: text/css; charset: UTF-8");
header("Cache-Control: must-revalidate");
$offset = 60 * 60 ;
$ExpStr = "Expires: " . 
gmdate("D, d M Y H:i:s",
time() + $offset) . " GMT";
header($ExpStr);
?>

2 Cevap

Sen İstenen URL yolunun sonunu kontrol edebilir:

$_SERVER['REQUEST_URI_PATH'] = strtok($_SERVER['REQUEST_URI'], '?');
$extensionToType = array(
    '.css' => 'text/css;charset=utf-8',
    '.js'  => 'application/javascript;charset=utf-8'
);
$extension = strrchr($_SERVER['REQUEST_URI_PATH'], '.');
if (isset($extensionToType[$extension])) {
    header("Content-type: ".$extensionToType[$extension]);
} else {
    header("Content-type: application/octet-stream");
}

Sen de oldukça uzantısını kullanarak daha FileInfo için mime-tipi sayesinde kontrol edebilir.