我按照此页面上列出的 PHP Minify 说明使用子目录,但它只是在我的测试 URL 处返回 400 bad request 错误。关于如何解决这个问题的任何想法或线索?
我遵循的步骤
- 将 min 文件夹相对于我的“演示站点”根目录
- 按照说明页面上的指示在下面添加了代码片段。
- 运行 URL 测试,返回 400 错误请求错误。
更多信息
服务器:Wamp 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;