我使用这段代码来缩小wordpress中的HTML输出。它在主页和帖子页上工作得很好,但在管理部分它会引起很多问题。
function minify_html(){
ob_start('html_compress');
}
function html_compress($buffer){
$search = array(
'/\n/', // replace end of line by a space
'/\>[^\S ]+/s', // strip whites
我使用了Meteor和铁路由器,并设置了许多服务器路由来返回一些带有Node.js响应对象的HTML。
现在,我希望缩小,并启用gzip作为响应。怎么做?
这是我的路线代码:
Router.route('/', function () {
var res = this.response;
var html = "<!DOCTYPE html>\n" +
"<html>\n" +
" <head>\n" +
"