以前介绍过使用七牛云加速,自我感觉七牛还是蛮不错的。 当然又拍云也可以啦!
关于七牛云存储的好处我们不多说了,它可以把我们网站的css.js.图片等全部放在七牛进行加速
虽然有免费流量的限制但是小站基本上够用,幻杀使用后感觉速度提升还是很明显的。
幻杀使用的插件,是我爱水煮鱼开发的七牛云存储插件,但是使用P3(点击这里查看)进行检测时,显示居然很坑速度,本来我还是很喜欢插件,但是对速度好吧……我不说了。
嗯,这个方法你可以选择用代码的,当然也可以不用代码的,如果都嫌烦那么还是用插件吧 关于
多方法可以选择性共同使用,记住是选择 !选择哟!记住看最后的评论再选择!
把这个插件代码化,这样就不用插件了。 打开你主题文件中的funsion文件(修改有风险,用前需备份)加入以下代码
//将主题自带的 CSS 和 JS 文件替换成七牛镜像存储
define(‘CDN_HOST’,’http://hsdate.qiniudn.com/’);
add_filter(‘stylesheet_directory_uri’,’dw_cdn_stylesheet_directory_uri’,10,3);
function dw_cdn_stylesheet_directory_uri($stylesheet_dir_uri, $stylesheet, $theme_root_uri) {
return str_replace(home_url(), CDN_HOST, $stylesheet_dir_uri);
}
add_filter(‘template_directory_uri’,’dw_cdn_template_directory_uri’,10,3);
function dw_cdn_template_directory_uri($template_dir_uri, $template, $theme_root_uri) {
return str_replace(home_url(), CDN_HOST, $template_dir_uri);
把里面设置的hsdate.qiniudn.com 地址换成你自己申请的加速域名。七牛又拍应该都有吧!
然后保存刷新下后查看下源代码,发现有关js的域名是不是已经被更改了!
当然这个只可以对你的js 和css进行加速,对图片无效!
使用上边方法加速效果不好?一般大家站点js css 数量应该没有图片多,最主要还是加速图片吧
使用这个方法图片也是可以加速的。
所以那使用下面的方法就可以将图片也使用七牛云存储了。
就如这个地址:http://ihuan.me/wp-admin/options.php,然后那找到upload_url_path,使用快捷键 跟方便 别自个凭眼睛慢慢找,你会疯的!
其中 ihuan.me 要换成你自己个博客地址 如果安装在子目录下 将子目录一块弄进去。
找到后 在那项出 添加 http://hsdate.qiniudn.com/wp-content/uploads,然后保存,其中hsdate.qiniudn.com一样换成你自己的。
这时候我们写一篇文章添加一张图片试试,图片的地址是不是已经变为七牛的地址了呢!
方法2有缺陷:就是说图片直接存在七牛的cdn空间上,这个对于网站空间紧张的用户来说是一个不错的选择
但是对于网站空间很充足的来说就不是很爽了,因为七牛毕竟不是自己的空间,我们不可能吧希望全部放在七牛那边,将来如果更换cdn空间的话这些图片有可能就全部无法使用!
简单的说,就是图片将直接上传至七牛空间而不通过你自己的空间! 图片不会在你的空间储存而是直接储存到了七牛!有利有弊,空间小的高兴,空间足的不高兴!
因为方法2没有备份,如果你有需要更换的话,就选择方法3,图片在本地回自动保留一份!
define(‘FocusCDNHost’,’http://ihuan.me’);//wordpress网站网址
define(‘FocusCDNRemote’,’http://hsdate.qiniudn.com’);//cdn域名
define(‘FocusCDNIncludes’,’wp-content,wp-includes’);//设置加速目录,可自行输入
define(‘FocusCDNExcludes’,’.php|.xml|.html|.po|.mo’);//设置文件白名单,一样可自行输入
define(‘FocusCDNRelative’,”);
function do_cdnrewrite_ob_start() {
$rewriter = new FocusCDNRewriteWordpress();
$rewriter->register_as_output_buffer();
}
add_action(‘template_redirect’, ‘do_cdnrewrite_ob_start’);
class FocusCDNRewriteWordpress extends FocusCDNRewrite
{
function __construct() {
$excl_tmp = FocusCDNExcludes;
$excludes = array_map(‘trim’, explode(‘|’, $excl_tmp));
parent::__construct(
FocusCDNHost,
FocusCDNRemote,
FocusCDNIncludes,
$excludes,
!!FocusCDNRelative
);
}
public function register_as_output_buffer() {
if ($this->blog_url != FocusCDNRemote) {
ob_start(array(&$this, ‘rewrite’));
}
}
}
class FocusCDNRewrite {
var $blog_url = null;
var $cdn_url = null;
var $include_dirs = null;
var $excludes = array();
var $rootrelative = false;
function __construct($blog_url, $cdn_url, $include_dirs, array $excludes, $root_relative) {
$this->blog_url = $blog_url;
$this->cdn_url = $cdn_url;
$this->include_dirs = $include_dirs;
$this->excludes = $excludes;
$this->rootrelative = $root_relative;
}
protected function exclude_single(&$match) {
foreach ($this->excludes as $badword) {
if (stristr($match, $badword) != false) {
return true;
}
}
return false;
}
protected function rewrite_single(&$match) {
if ($this->exclude_single($match[0])) {
return $match[0];
} else {
if (!$this->rootrelative || strstr($match[0], $this->blog_url)) {
return str_replace($this->blog_url, $this->cdn_url, $match[0]);
} else {
return $this->cdn_url . $match[0];
}
}
}
protected function include_dirs_to_pattern() {
$input = explode(‘,’, $this->include_dirs);
if ($this->include_dirs == ” || count($input) < 1) { return ‘wp\-content|wp\-includes'; }
else { return implode(‘|’, array_map(‘quotemeta’, array_map(‘trim’, $input))); } }
public function rewrite(&$content) { $dirs = $this->include_dirs_to_pattern();
$regex = ‘#(?<=[(\“\’])'; $regex .= $this->rootrelative
? (‘(?:’.quotemeta($this->blog_url).’)?’)
: quotemeta($this->blog_url);
$regex .= ‘/(?:((?:’.$dirs.’)[^\”\’)]+)|([^/\”\’]+\.[^/\”\’)]+))(?=[\”\’)])#';
return preg_replace_callback($regex, array(&$this, ‘rewrite_single’), $content);
}
}
方法3很高大上,完全可以和插件媲美,准确说和插件差不多了,插件有的他也有,除了七牛那个恶心人的水印木有!
白名单啥的都有了!
根据前面的描述,大体给个使用的说明
方法一,可以只可以加速js css
方法二,可以加速图片等通过上传方式上传的文件,但是缺点是文件没有在本地进行备份而是直接去了七牛!
方法三,可控可存 可以控制文件储存白名单,文件也会在本地有储存!
你可以依据此说明进行一下选择,选择哟,出错咱不管!!!
好了,又可以干掉一个插件,麻麻再也不用怕插件多了!
wholesale nfl jerseys wholesale nfl jerseys gthnmc67915
2018年8月18日 19:22Cheap Jerseys china cheap nfl jerseys tfqjuk36846
2018年8月18日 19:17Because the cock ring is jelly, I recommend storing
2018年8月18日 18:46it at cool temperatures, not somewhere that is humid or hot or
damp or sticky. Store the ring in a silk pouch if
you have one.
sex Toys for couples 87618
wholesale jerseys from china 25638
2018年8月18日 18:41Cheap Jerseys china cheap jerseys a aaaaa
471
2018年8月18日 17:31cheap jerseys Cheap Jerseys china bacran43019
2018年8月18日 16:17cheap nfl jerseys cheap jerseys taasfe37837
2018年8月18日 15:01The Aztecs led by three with six minutes left before going on a 15 4 run to close the half for
a 37 23 lead. Kell had a 3 pointer and Hemsley had two buckets.was a good game to get the bad taste out of our mouth
but we still remembered what happened, Hemsley said. Game isn something we can hang our heads on.
wholesale nfl jerseys A popular stun gun model looks like a
quality pen that one might keep in a shirt pocket or purse.
Even tho they are only 6″ tall and compact in size, pen stun guns can still deliver the same results as a full size stun gun. The small size makes them easy to conceal and yet at the same time holds firmly in your hand when using it.wholesale nfl jerseys
cheap jerseys In the January issue of Men’s Health this year, we ran a terrific picture of Tim Howard leaping sideways to block a shot. He was part of our “New Year,
New You” package, and wouldn’t you know it He says everything important comes down to abs: “I’m constantly strengthening my core,” he told us, “because
that’s what gives me the ability to react faster and the stability to control my body better.” Also true to form, Howard told us he preps for games by taking sparring practice. If ever there was a guy who took some punches and kept on coming back for more, it was Tim vs.cheap jerseys
Cheap Jerseys free shipping And it dawned on me that it is a connection to my past, to my childhood, to my mother. And my connection to something even further back than that, to my ancestral and cultural history. And it is a way for me to transmit to my children an unspoken sense about their past, their inheritance through us, me and my husband.Cheap Jerseys free shipping
Mr. Walker and Andrea K. Walker,SUN STAFF November 23, 2004. Major League Baseball plays its 82nd All Star Game tonight at Chase Field in Phoenix. It’s the first time the game has been played in the home of the Arizona Diamondbacks. Critics of Arizona’s tough immigration law, known as SB 1070, wanted the game moved elsewhere, but it will go on that is, minus some big name players.
cheap jerseys At the end of the day, it not one player that going to win, it one team. Was only getting started, too. He had a towering one handed jam off an alley oop from Quinn Cook, looking very much like Grant Hill from his days in Durham. “For us
to keep playing after St. Patrick’s Day, we haven’t done this
in six years,” MacLeod said Tuesday, after the Irish beat Texas Christian, 82 72, at South Bend, Ind., in the second round of the National Invitation Tournament. “It’s
exciting.”Marina Defense Slams the Door on Westminster.cheap jerseys
Cheap Jerseys china I showed my mom the picture when I got home and she thought it was the cutest thing. You could clearly see the little boy looking at his dad as he was warming up, and both of the last names of their jerseys were showing. I ended up tweeting the picture to the player (his name is Nick Hardwick) in cheap nfl jerseys hopes that he would see it and maybe like it..Cheap Jerseys china
wholesale nfl jerseys from china I just wanted him to validate. sending its Sony shot twice I have certain symbols that just certain things and they’re not can’t exactly twenty years but it isn’t that for a very long time. The number 2727. The wedding plan should be done to make it look captivating. The music being played on the day of the wedding should be special to arouse the people’s interest. You either plan for a live music or pre recorded songs based on the nature of the wedding traditions.wholesale nfl jerseys from china
cheap nfl jerseys A few weeks ago, we brought you a list of the latest and greatest lunchboxes so those of you participating in the Brown Bag Challenge could bring your lunch to work in style. But with the arrival of cool fall temperatures, soups and hot dishes are going to start making appearances. We got the best in hot food containers so you can plan for warm meals with no worries..cheap nfl jerseys
wholesale nfl jerseys To his relationship with his father. To his summer reading list. The latter contains a surprise that surpasses Albert Camus’ “The Stranger.” The schedule for the president’s time on the ground. Buffalo Hall of Famers Rick Reed and Dorn Taylor never did that. Neither did Jaret Wright or the Mets’ era power arms of Dillon Gee and Matt Harvey. Heady stuff.”You have to
attack guys,” Norris said.wholesale nfl jerseys
Cheap Jerseys from china To excel in softball, a team players need to have fine throwing, fielding, catching, hitting and base running skills. To hone their skills, they need to practice and work developing their mechanics. Apart from athletic skills, their team uniform can have a positive impact their performance.Cheap Jerseys from china
With files from CBC Sports and The Associated PressBy submitting a comment, you accept that CBC has the right to reproduce and publish that comment in whole or in part, in any manner CBC chooses. Please note that CBC does not endorse the opinions expressed in comments. Comments on this story are moderated according to our Submission Guidelines.
.
2018年8月18日 14:55Does Charlie listen to his father? ‘Every now and
2018年8月18日 13:53then, Sheen says. ‘Depends on whether it a moment of clarity for
him. I can determine that for him. “You are the thing I am most proud of in this entire world,”he said.
“You could never disappoint me.
cheap sex toys 2414
Cheap Jerseys china cheap jerseys Cheap Jerseys china cheap jerseys wholesale nfl jerseys from china cheap nfl jerseys
2018年8月18日 13:20ongedw70037
“It’s two great leagues, and I think it’s great to bring people in to Unitas Stadium,”
Gilman coach Biff Poggi said. “We really like playing there. I think it’s going to be a great couple of days of high school football.