以前介绍过使用七牛云加速,自我感觉七牛还是蛮不错的。 当然又拍云也可以啦!
关于七牛云存储的好处我们不多说了,它可以把我们网站的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
方法二,可以加速图片等通过上传方式上传的文件,但是缺点是文件没有在本地进行备份而是直接去了七牛!
方法三,可控可存 可以控制文件储存白名单,文件也会在本地有储存!
你可以依据此说明进行一下选择,选择哟,出错咱不管!!!
好了,又可以干掉一个插件,麻麻再也不用怕插件多了!
Hello there! This is my first comment here so
I just wanted to give a quick shout out and say I really enjoy reading through your articles.
Can you recommend any other blogs/websites/forums that deal with the same subjects?
Thanks a ton!
2018年8月20日 01:23Thank you, I’ve just been looking for information about this subject for a long time and yours is the best I have came
2018年8月19日 14:28upon so far. However, what concerning the conclusion? Are you certain about the source?
Gosling appeared in a film for the 1st time in 1996.
2018年8月19日 14:15It’s appropriate time to make some plans for the longer term and it is time to be happy.
2018年8月19日 12:18I’ve learn this post and if I could I desire to recommend you some interesting issues or
suggestions. Maybe you could write next articles regarding this article.
I want to read even more things about it!
wh0cd1326098 [url=http://viagrabestprices.us.com/]Viagra[/url]
2018年8月19日 11:07I have read so many posts on the topic of the blogger lovers however this piece of writing is actually a nice post, keep it up.
2018年8月19日 03:32Gosling appeared in a film for the first time in 1996.
2018年8月19日 03:06Had nothing. We had no food, no showers for people at the
first game. And to think of where we at now is crazy.
Beyond tricking the masses into memberships they’ll never use, we’re supposed to sign clients up for personal
sessions because that’s where the real money is. An hour of
personal training might cost upward of $100, more than a whole month of gym membership.
So once we’ve got people in the fitness room, we tell
them the gym itself will do nothing for them, and they need one on one
time if they want to improve.
Cheap Jerseys china Although there aren’t any rules you
need to follow; however, if you want to give your
team a unique identity, you need to get creative. Gather all the
members of the team, sit together, and focus on coming up a name collectively.
And to help you get started, we’ve put together a few factors to consider in choosing good dance team
names..Cheap Jerseys china
wholesale nfl jerseys from china Haven transitioned in a long time.
So I forgot what all the newness was about a little bit.
But it been fun. By the time it ran it’s course wholesale jerseys from
china in just three months over 50 MILLION people world wide
would die! And yet very few people have even heard of it. This flu wiped out entire family’s in just one day and was not just limited to soldiers anymore.
It struck big and small towns alike.wholesale nfl jerseys from china
wholesale nfl jerseys Today, of course, we are an Aaron Rodgers house.
(Never, ever get Rich started on Packers fans who defected when Favre left the team.) Over coffee in the morning, I can expect to be enlightened
on Rodgers latest quarterback ranking. Rich also periodically interrupts
my work to remind me of small facial expressions and gestures
that indicate that Rodgers is a stand up guy..wholesale nfl jerseys
wholesale jerseys from china Using reverse billing and textback, the website provided its users
with the ability to find out this information. 83999).
A set amount was then immediately deducted from
the users phone either pay as you go or from their monthly contract.
It turns out that African dung beetles plot their courses
using the light from the Milky Way, effectively making dung
beetle navigation more complicated than your crummy knockoff GPS.
For dung beetles, moving in a straight line away from a poo
pile is crucial. Rolling giant balls of crap can be dangerous,
because it’s easy to get off track, as anybody who has set out to Katamari an innocent pile of skis and then accidentally absorbed a
child’s playground can attest..wholesale jerseys from china
wholesale nfl jerseys from china After examining the
tureen and the plates, and stirring up the wood ashes on the fire, and making no sort of discovery,
Monsieur Thierry turned to Marie, and asked if she could account for
what had happened. She simply replied that she knew nothing at all about it; and thereupon her mistress and the rest of the persons present all overwhelmed her together with a perfect
torrent of questions. The poor girl, terrified by the hubbub,
worn out by a sleepless night and by the hard work and agitation of the day
preceding it, burst into an hysterical fit of tears, and was ordered
out of the kitchen to lie down and recover herself.wholesale nfl jerseys from china
wholesale nfl jerseys Maybe it was the start of something good
and boisterous, maybe the start of something messy.
We wanted atmosphere, we got it. International, who, along with Holland’s
Marc Overmars, was the fastest player I’d ever seen. Note: If you can’t complete at
last two standard pushups, then do the same routine, but with your
hands on a raised surface such as a bench or step instead of the floor.
This reduces the amount of your body weight you have to lift.
That’s because the higher the surface, the easier the exercise becomes.wholesale nfl jerseys
cheap nfl jerseys Tell them to get paid they have to catch or kill Taliban and stand back.
Also you could tell them if they survive 3 tours they
can go free. We in the west need to stop coddling our criminals and
start using a bigger stick. Little known Christian Eyenga, a first
round pick (No. 30 overall) of Cleveland in 2009, wore
No. 88 in his time with the Lakers in 2012 which consisted
of all of one game.cheap nfl jerseys
Cheap Jerseys free shipping Funny to see lots of Indians blaming their coach Duncan Fletcher.
The famous batting line up collapsed regularly which comprised of
4 players (Sehwag, Dravid, Tendulkar, Laxman) with more
than 550 test, 45000 runs under their belt.
Their experience is 11,16,22 and 16 years respectively.Cheap Jerseys
free shipping
wholesale jerseys Dow: / NASDAQ: / S 500:How To:
Fix Your Fatigue And Get More EnergyYou can say that National Basketball Association Commissioner David Stern does not enjoy a challenge.
Players will have to observe a dress code beginning this season, he has announced.
The idea is going over big with the players like flood insurance in the Sahara.The code,
delivered in a short memo last week, boils down to this: No bling.for those
of you who are not fortunate enough to have a teenager in your home, is
short for bling, a hip hop term for gaudy jewelry and other forms of showy,
ostentatious style.In 2002, bling joined and in the Oxford English Dictionary as
synonyms for what my generation called hip, a milestone that pretty much declares
each of these terms to be unhip now.Now, bling is officially unhip in Mr wholesale jerseys.
.
2018年8月19日 02:22cheap jerseys wholesale nfl jerseys cjuidu66205
2018年8月19日 00:04It is very inflexible and stiff, so if you
prefer toys that don’t have a lot of wriggle room, then this will suit you perfectly.
In fact, among the plain dongs I have got, this is one of the nicer ones.
sex toys 90395
2018年8月18日 22:07