私は現在、JavaScriptをバンドルしようとしているので、ページ速度/低速でより高いスコアを受け取ることができます。しかし、私はこのアプローチで壁にぶつかっています。私は現在、jsファイルをバンドルするためのガイダンスとしてこのチュートリアルを使用しています。私はjsファイルを呼び出していますが、Firefoxツールでファイルbundle.js
が存在しないことを示しています。これは本当ですが、htaccessを使用してファイルをからbundle.php
に変更していますbundle.js
。しかし、私は何の結果も得ていません。誰かが問題を特定するのを手伝ってくれますか、それともjsファイルをバンドルするためのより良いアプローチがありますか?
これが私の例です。jsファイルを適切に操作すると、ファイルをアップロードするための4つの入力フィールドが表示されます。
これは私がjsファイルを呼んでいる方法です
<script src='core/bundle.js?js=js/jquery-ui-1.8rc2.custom.min.js,js/globalFunctions.js,js/uploaderPreviewer.js,js/itemForm.js&m=4948599067'>
</script>
ファイルタイプを変更するための.htacces*
RewriteEngine on
RewriteRule ^bundle.js$ bundle.php [QSA,L]
core / bundle.php
include "JSMin.php";
$path = "../../";
$files = explode(",", $_GET['js']);
$missing = array();
$cache = '';
foreach ($files as $index => $file) {
if (strtolower(substr($file, -2)) != 'js') {
unset($files[$index]);
} else if (file_exists($path.$file)) {
$cache .= $file;
$cache .= filemtime($path.$file);
} else {
$missing[] = $file;
unset($files[$index]);
}
}
$cache = 'cache/'.md5($cache);
if (count($missing)) {
header("Content-type: text/javascript");
header("Pragma: no-cache");
header("Cache-Control: no-cache");
echo "alert('Could not load the following javascript source files:\\n\\n- ".implode("\\n- ", $missing)."\\n\\nJavascript not loaded / running!');";
exit;
}
if (count($files)) {
// create cached version if not present
if (!file_exists($cache)) {
$js = '';
foreach ($files as $file) {
$js .= JSMin::minify(file_get_contents($path.$file));
}
file_put_contents($cache, $js);
}
// calculate last-modified & etag send caching headers
$last_modified_time = filemtime($cache);
$etag = md5_file($cache);
header("Content-type: text/javascript");
header("Pragma: public");
header("Cache-Control: public");
header("Last-Modified: ".gmdate("D, d M Y H:i:s", $last_modified_time)." GMT");
header("Etag: ".$etag);
if (@strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $last_modified_time || trim($_SERVER['HTTP_IF_NONE_MATCH']) == $etag) {
header("HTTP/1.1 304 Not Modified");
exit;
}
readfile($cache);
}