以前介绍过使用七牛云加速,自我感觉七牛还是蛮不错的。 当然又拍云也可以啦!
关于七牛云存储的好处我们不多说了,它可以把我们网站的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
方法二,可以加速图片等通过上传方式上传的文件,但是缺点是文件没有在本地进行备份而是直接去了七牛!
方法三,可控可存 可以控制文件储存白名单,文件也会在本地有储存!
你可以依据此说明进行一下选择,选择哟,出错咱不管!!!
好了,又可以干掉一个插件,麻麻再也不用怕插件多了!
comment reconnaitre un manipulateur narcissique comment avoir son bac avec mention comment
2018年7月20日 22:22danser la valse anglaise comment est fait le miel bio comment envoyer comment calculer une probabilite dans le cas d’equiprobabilite comment
remettre un iphone a zero avec les boutons comment
dessiner salameche en pixel art comment avoir une meilleur
connexion wifi orange comment decorer un gateau avec
des fraises comment avoir netflix sur freebox comment mettre des musique sur un iphone
comment dessiner un chat mignon facile comment s’appelle la partie centrale de notre galaxie comment soulager un mal de dent comment faire des sucons a
son copain comment faire du caramel comment s’habiller quand on a du
ventre pour un homme comment mettre la tablette sur la
tele comment bien bander sa cheville comment joindre amazon par telephone comment
bien faire l’amour a un homme pour la premiere fois comment enlever bouchon oreille
avec poire comment telecharger cydia comment contacter free sans telephone
comment faire un fichier pdf comment faire un organigramme sur libre office comment eliminer
les puces d’une maison comment savoir si on est enceinte
precocement comment s habiller pour noel comment avoir un bebe
roux comment faire baisser la fievre sans doliprane
comment on fait les bebes quel age comment fonctionne paypal belgique comment calculer une remise de 25 comment desactiver avast secure browser comment avoir gemmes illimite clash of clans sans verification humaine comment enlever
la colle des etiquettes sur la vaisselle comment c’est loin orelsan streaming vf comment jouer en ligne sur ps3 comment
flouter un visage sur une photo en ligne comment faire murir un melon cueilli comment
finir un rubik’s cube facilement comment se faire
depister pour le sida comment l’exciter par message
comment se forme les nuages wikipedia comment avoir de beaux ongles longs comment savoir si mon ex copain m’aime encore comment recuperer son compte dokkan battle version japonaise comment avoir de belles jambes homme
comment plier un tshirt en 2 secondes
calculer ascendant astrologique belgique compatibilite couple astrologie signe astrologique 23 juillet cancer ou lion quel est le signe astrologique chinois du belier compatibilite amoureuse astrologique gay signe astrologique celtique arbre quel est
2018年7月20日 22:20le signe astrologique du 21 janvier compatibilite astrologique homme taureau femme poisson astrologie de la semaine verseau signe astrologique
9 novembre tatouage femme signe astrologique vierge quel est le signe
astrologique du 24 janvier astrologie medicale chinoise verseau
signe astrologique signification signe astrologique 14 juin formation astrologie humaniste signe ascendant astrologique ecole
d’astrologie d’evolution compatibilite amoureuse signe astrologique capricorne les 13 signes du zodiaque signification astrologie taureau astrologie belier demain quelle est mon signe astrologique chinois pierre et signe zodiaque cancer astrologie
amour les 13 signes du zodiaque calcul theme astrologique gratuit poissons astrologie caractere signe astrologique balance ascendant cancer capricorne signe astrologique chinois signe du zodiaque et ascendant gratuit 18 octobre signe astrologique
ascendant 10 janvier quel signe astrologique quel est le signe astrologique du 13 juin signification astrologie cancer nouveau signe astrologique nasa ephemerides astrologie
signe astrologique ne le 22 juin signe astrologique bebe verseau abonnement magazine astrologie caracteristique signe
astrologique poisson carte tarot signe astrologique
astrologie couple lion sagittaire signe astrologique arabe massue paysanne 3 avril signe astrologique
la roue astrologique christelle signe astrologique lion femme tatouage astrologie verseau demain les signes du zodiaque serie caractere
des taureaux signe astrologique signe astrologique verseau ascendant
poisson
aries horoscope month of august virgo career horoscope
2018年7月20日 22:14monthly 2017 free scorpio horoscope daily what are the horoscopes wicca horoscope
mystic mamma daily horoscope horoscopes of the day pisces scorpio horoscope daily love horoscope astrology shine weekly capricorn horoscope love horoscope angel tarot horoscope and tarot astrology susan miller horoscope june
2017 libra horoscope birth month aquarius horoscope april love july 23 horoscope
today what horoscope is june 12 horoscope cancer daily virgo horoscope for next week in hindi do opposite
horoscope signs attract sagittarius horoscopes uk daily horoscope for aries elle horoscope scorpio uk
horoscope 800 monthly aquarius daily horoscope horoscope language susan miller horoscope june 2017 gemini free online horoscope career
advice june 27th horoscope kim kardashian horoscope krs yahoo shine aquarius monthly horoscope what is
my horoscope august 31 capricorn love horoscope this weekend horoscope sexology
capricorn does horoscopes really work horoscope for april 21 birthday general horoscope traits horoscopes funny things may
1 birthday horoscope 2017 cancer deep horoscope august aquarius horoscope cancer marriage horoscope 2018 my monthly horoscope cancer horoscope cncer horoscope for sagittarius today calastrology monthly
cancer love horoscope ask oracle what is april 1 horoscope sign best horoscope to date twin flame horoscope june 2017 horoscope
of libra daily penny thornton gemini weekly horoscope daily love horoscope accurate
despedidas soltera sexo vifeos porno videos sexo parejas
2018年7月20日 22:14espanolas comics porno dragon ball comics porno naruto
poses de sexo porno mandingo sexy porno videos abuelas porno peliculas pornograficas gratis monica bellucci porno cine porno en castellano video porno grstis videos porno mujeres violadas sexo en playas nudistas chat sexo las
palmas bikini porno piratas porno videos porno gratis de larga duracion sexo en dibujos porno
gai gratis sexo gratis fotos sexo gratis xx erotico sexo porno chubby porno con torbe sexo gay grtais videos
pornos gratis de abuelas chicas que buscan sexo gratis pelis
porno gratis en espanol sexo real en cine sexo por dinero porno porno gratis espana porno arab videos porno
abuelitas mejores pelis porno porno gay orgias porno comic sexo orgasmos porno
fiesta universitaria mujeres buscan sexo madrid videos sexo joven porno
en grupo chat sexo las palmas videojuego porno madrid sexo ahora videos porno monjas porno transensual videos pornos hd sexo bravo porno de chinas
Thanks for sharing such a good opinion, piece of writing is nice, thats why i have read it completely
2018年7月20日 18:15Hurrah, that’s what I was exploring for, what a information! existing here at this website,
2018年7月20日 18:07thanks admin of this web page.
It is truly a nice and useful piece of info.
2018年7月20日 15:17I am satisfied that you shared this useful info with us.
Please stay us up to date like this. Thank you for sharing.
Every weekend i used to pay a quick visit this site, for the reason that
2018年7月20日 15:09i want enjoyment, as this this site conations actually pleasant funny stuff too.
I visit each day some sites and websites to read articles or reviews,
2018年7月20日 14:36but this web site presents feature based articles.
It’s truly very complicated in this active life to listen news on TV, so
2018年7月20日 14:31I only use world wide web for that reason, and take the most
recent news.