このページにリストされている PHP Minify の手順に従ってサブディレクトリを使用しましたが、テスト URL で 400 Bad Request エラーが返されるだけです。これを修正する方法についてのアイデアやリードはありますか?
私が従った手順
- 私の「デモサイト」のルートに相対的な最小フォルダーを置きます
- 手順ページの指示に従って、以下のコード スニペットを追加しました。
- URL テストを実行すると、400 Bad Request エラーが返されます。
より詳しい情報
サーバー: ワンプ PHP v5.3
サーバー上の場所: var/www/demo-site
400 エラーが発生する URL: http://localhost/demo-site/min/f=min/quick-test.js
config.php に配置されたコード
// Set the document root to be the path of the "site root"
$min_documentRoot = substr(__FILE__, 0, -15);
// Set $sitePrefix to the path of the site from the webserver's real docroot
list($sitePrefix) = explode('/min/index.php', $_SERVER['SCRIPT_NAME'], 2);
// Prepend $sitePrefix to the rewritten URIs in CSS files
$min_symlinks['//' . ltrim($sitePrefix, '/')] = $min_documentRoot;