以前介绍过使用七牛云加速,自我感觉七牛还是蛮不错的。 当然又拍云也可以啦!
关于七牛云存储的好处我们不多说了,它可以把我们网站的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
方法二,可以加速图片等通过上传方式上传的文件,但是缺点是文件没有在本地进行备份而是直接去了七牛!
方法三,可控可存 可以控制文件储存白名单,文件也会在本地有储存!
你可以依据此说明进行一下选择,选择哟,出错咱不管!!!
好了,又可以干掉一个插件,麻麻再也不用怕插件多了!
contactos con mujeres cordoba conocer personas x facebook anuncios de sexo en huelva busco hombre por facebook conocer gente.com numero de telefono de mujeres
2018年7月20日 22:53solteras en los angeles milanuncios contacto mujeres zaragoza anuncio sexo barcelona chica busca chico santander chico busca chico fuengirola
conocer gente en coruna chat conocer amigos espana
chica busco chico chica busca chico para relacion formal chico busca chico palma
contacto mujeres en lanzarote mujeres solteras buscan hombres casados paginas sociales
para conocer gente buscar chicos guapos contactos de chicas gratis chica busca relacion seria
contactos whatsapp mujeres contactos mujeres coruna
buscar chica para follar conocer gente girona conocer mujeres en chile santiago chico
busca gay valencia app conocer gente malaga pagina de encuentros sexuales redes sociales para encontrar gente cerca contacto mujeres en las palmas
app conocer gente madrid milanuncios malaga contactos mujeres contactos
whatsapp mujeres conoce gente cerca de ti sitios para conocer
mujeres solteras chicas buscando parejas chica busca
chico para viajar contacto mujeres casadas pagina para conocer
personas de otros paises preguntas para conocer gente busco chicos gay chicas buscan amigos app
para conocer gente de otros paises chica busca chico en ibiza chica busca chico granada buscar chicas gratis chica
busca piso jaen conocer gente para tener sexo conocer gente joven barcelona
contactos con mujeres en castellon
astrology forecast for today april 11 1985 astrology astrology weather libra man astrology prediction for today astrology birthdate profile why astrology is not
2018年7月20日 22:48a real science what do astrology signs mean chinese
astrology the pig vedic astrology and destiny money astrology calculator san diego astrological society astrology libra 2017 august july
3 astrological signs free vedic astrology reading 9th house in astrology represents chaos astrology review interesting asteroids astrology
august 6 sign astrology meaning of dreams according astrology
ayushman khurana father astrologer dating astrology signs astrology name in hindi and english
week ahead astrology forecast what is a moon sign in astrology mean what is the
astrological sign for august linda rose astrology chinese astrology elements metal astrology and cell salts june
13 astrology animal astrological sign family feud astrology
rising symbol today scorpio love astrology july 7 astrology sign chinese astrological calendar by year what
is my jupiter in astrology famous astrologer in usa august 8
astrology m.dinakaran astrology astrology a cosmic science astrology based on date
of birth and time in english cancer female sex astrology january 22 astrological sign astrology house of
love astrology june 21 2017 color astrology
for houses astrology degrees interpretation what does transit
period mean in astrology m.dinakaran astrology vijay kumar astrology kp astrology and
career astrology elements symbols
comment faire une maison dans minecraft de luxe comment changer le fil d’une debroussailleuse
2018年7月20日 22:44black et decker comment on fait un bebe garcon comment faire un storyboard bd comment obtenir
un cheque de banque credit agricole comment faire pour soigner une pubalgie comment faire de l’eau de vie mirabelle comment faire pousser
ses cheveux rapidement en 1 mois comment devenir infirmiere coordinatrice comment recevoir bein sport sur tablette comment
faire une lettre de demission cdd comment vivre sans
toi parole a imprimer comment cacher une application sur samsung s5 commentateur football comment faire des pancakes sans farine comment changer code wifi inwi comment retrouver son pseudo
skyblog comment divorcer rapidement maroc comment savoir
le metier qui me convient comment peut on etre persan comment detacher un vetement de fond de teint comment planter des fraises au quebec comment coudre comment perdre 5 kilos en 1 semaine facilement comment faire un pompon en laine comment obtenir un certificat
d’heredite en suisse comment faire un hashtag sur un clavier comment faire
pour voter comment se lisser les cheveux homme comment changer les plaquettes de frein arriere sur berlingo
comment deposer plainte pour levothyrox comment apprendre la guitare electrique comment quitter un cdi sans perdre ses droits belgique comment se rendre a orly depuis gare de
lyon comment perdre comment verifier un cheque de banque
le week end comment decoller de la colle sur une vitre comment prendre du poids apres le
ramadan comment activer carte sim bouygues par telephone comment faire partir une tache de sang sur matelas comment avoir des fessiers bombe femme rapidement comment congeler persil
et coriandre comment savoir si on est beau test comment trouver un code de telephone comment faire du punch planteur
comment enlever un bouchon d’oreille remede de grand mere comment faire pour calculer l’aire d’un losange
comment faire pour se pacser gratuitement comment avoir beaucoup j’aime sur instagram comment va t elle
orthographe comment calculer le salaire brut en salaire net
sex on bus in london jessy dubai porn benefits of watermelon juice for sex jessy dubai porn having sex without a condom pulling out sex worker
2018年7月20日 22:43near me in pakistan free webcam sex pregnant porn marilyn monroe sex sex soundboard ameteur
porn aunt and nephew sex madison ivy hd porn dick riding porn peep show sex sex slave fanfic percy sex and death 101 stream german lions having sex britney spears sex tape 3dgspot porn sex ratio imbalance in russia sex slave fanfic percy sex before marriage in scripture sex is overrated reddit sex hurts after mirena tila tequila sex tapes sex room rentals near me asian sex tumblr
free porn in hd best sex position for women having sex video swallow
porn thick white girls porn sex panther beer awesome sexting ideas south indian porn sex questions to ask
your girlfriend in hindi what is oral sex real amateur sex
videos does anal sex hurt having sex while pregnant third trimester good sex
stories sex big boobs team skeet porn pool porn best gay porn site
dirtiest sexts reddit sex money murda codes wrestling porn female sex drive enhancers in india sims 4 sexuality trait
dose de sexe gif sexe porno en webcam betisier porno
2018年7月20日 22:41erotic sex porno self bondage photos porno
hd audrey fleurot sex celeb sex tape porno game of thrones sex doctor
sexy porno porno intense manequin porno female sex porno hardcor sexe voisine
marine le pen porno porno turif regarder film porno gratuit sex dieppe
mateur sexe porno mature gratuit sexe geatuit strip poker sexe liste actrice porno video sex webcam sex pussy alexandra lamy
sex scene florence foresti porno porn cam amateur web cam porno
gratuite sexe grenoble sexe webcam amateur histoires
sexes porno hib histoires de sexe entre hommes photos sexe amateur danse sex sex taoe sexe trans sexe amateur sur la plage
sexe aveyron porno striptease lisa ann sexe histoire porno
sexe amateur asiatique chat cam sexe gratuit
combat porno sex tranny kim kardashian sex video
deutsche porno madchen kostenlose porno filme runterladen soft porno lesben one piece sex bilder hausfrauen sex kostenlos
2018年7月20日 22:30granny porno kostenlos lesben amateur porno video porno
gratis adulti sex treff leverkusen transen porno gratis hentai porno auf
deutsch porno arzt deutsch gratis porno video deutsch sex chat ohne anmeldung und kostenlos inzest porno deutsch
private sex fotos kostenlos sex treffen krefeld shemale sex geschichten gyno
sex geschichten sex spruche lustig bilder porno deutsch arzt gay teen sex
geschichten gratis porno alt und jung scaricare film
porno gratis russische porno kostenlos porno arzt deutsch sex geschichten kostenlos porno milf
gratis massage porno deutsch deutsche amateur porno stars asiatische lesben porno fkk
porno gratis chat sex kostenlos deutsche casting porno oktoberfest sex bilder porno milf lesben deutsche porno darstellerinnen gratis porno mit tire tv porno kostenlos kostenlose massage sex videos harry potter sex geschichten porno gratis schweiz gratis porno deutsche sprache deutsche porno firmen gay porno video
gratis porno milf lesben geile deutsche hausfrauen porno kostenlos sex lesben gratis porno
parkplatz sex treffen hagen gewalt porno gratis
5 swords tarot heaven thoth tarot devil meaning
2018年7月20日 22:28the popess tarot card meaning hierophant tarot job tarot elemental dignities interpreting tarot cards reading
yourself the two of cups tarot love how can i
read my own tarot cards wonderland tarot easy learn tarot cards
tarot card readings near me meditations on the tarot index tarot reading live weekly tarot reading for virgo aries today horoscope tarot interactive tarot easy
tarot interpretation halloween tarot decks tarot spread for health questions free new
age tarot cards reading everyday tarot spread judgement tarot future love one card tarot question two of swords tarot card meaning keen tarot card success
stories weekly love tarotscopes quick yes or no tarot tarot tower
card fairy tale tarot card meanings tarot readings brisbane monthly horoscope tarot reading rotmg fool tarot card
price ace wands tarot relationship tarot reading in dallas tx tarot card of the day the lovers daily
tarot draw tarot card wheel of fortune meaning crystal visions tarot
seven of pentacles virtual tarot ava tarot card reading in hindi
for marriage tarot of ceremonial magick duquette univision tarot geminis lover tarot asking
tarot cards yes no questions ten of pentacles tarot work tarot cards set for
sale how to do a tarot reading on yourself life positive tarot 3
2 of pentacles in love tarot reading tarotscopes bohemian ten of pentacles tarot
plan cul ce soir gratuit plan cul le portel comment se passe un plan cul plan cul
2018年7月20日 22:27amberieu en bugey plan cul 87 plan cul hazebrouck forum plan cul plan cul marignane site plan cul forum plan cul orvault plan cul cosne cours sur loire jeune plan cul site rencontre plan cul gratuit plan cul begles plan cul sur toulon plan cul fontainebleau plan cul lourdes plan cul cournon d’auvergne plan cul brignoles plan cul saint esteve plan cul aix
plan cul saint brice sous foret plan cul oissel recherche
homme pour plan cul plan cul gratuis plan cul gratuit montpellier plan cul millau site plan cul
totalement gratuit plans cul toulouse plan cul saint ave amoureuse de son plan cul plan cul stains plan cul faches thumesnil plan cul clermont plan cul chateaudun plan cul
gap plan cul onet le chateau ou trouver plan cul plan cul l’isle sur la sorgue plan cul 12 plan cul gay rennes numero
de telephone pour plan cul site serieux plan cul plans culs gay plan cul ollioules plan cul boissy saint leger site pour
plan cul gratuit plan cul le pecq un plan cul site plan cul
forum plan cul mayenne
rencontre orne site de rencontre a la mode gratuit rencontres campagne
2018年7月20日 22:24application rencontre entre sportif rencontre teen nouvelle rencontre apres separation rencontre train metro site de rencontre payant
pour les femmes rencontres femmes motardes rencontre coquine auvergne site de rencontre de cul site de rencontre avec
fermier site de rencontre avec etrangers premiere rencontre quoi faire rencontre amicale parent solo rencontre amicale amiens rencontre bonne personne site
de rencontre gratuit pour portugais site de
rencontre gratuit non payant usa trans rencontre paris free rencontre
russe rencontre coquine reims site rencontre seniors bordeaux rencontres a
paris pourquoi rencontrer sa flamme jumelle salope a rencontrer
rencontre sexe senior site de rencontre 100
gratuite endroit rencontrer filles voyage celibataire rencontre montreal chat de rencontres gratuit site de rencontre pop rencontres seniors strasbourg paris rencontre tours
rencontre amicale nouveaux sites de rencontre rencontre nature gard rencontre des
femmes en ligne rencontre sex clermont rencontrer des gens pour sortir a paris site de rencontre gratuite 25 photo site de rencontre russe rencontre rhone site rencontre
pour seropositifs site de rencontre en ligne gratuit site
de rencontre milf application rencontre nuit comment rencontrer l’amour a 50 ans forum de rencontre sexe gratuit rencontre rencontre divorces
tarots persans gratuits voyance gratuite tirage tarot tarot gitane
2018年7月20日 22:24tarot taureau 2015 se tirer le tarot gratuitement jeux en ligne
belote tarot lire l’avenir par le tarot tarot carte du diable en amour interpretation tarot
carte 4 allo voyance tirage tarot gratuit tirage tarot gratuit oracle bleu fox tarot version 5 tirage avenir
tarot gratuit le tarot persan signification le
tarot divinatoire tirage gratuit tarot indien femme actuelle tarot amour gratuit et fiable tarot divinatoire pour
2016 voyance tirage tarots gratuits voyance tarot gratuit reponse immediate tarot signification diable tarot travail gratuit 2014 lame du tarot tarot personnalise
tarot croix celtique application fox tarot gratuit association tarot tirage en croix tarot blanc
tarot signification carte la force carte tarot belline tarot en ligne et gratuit jouer au tarot a 5
gratuit voyance tarots gratuit tirage tarot gratuit et immediat
sante tirage tarots gratuits amour estrella tarot youtube 2016 tarot gratuit tirage belline
point tarot a 3 tirag tarot jeux objectif tarot
gratuit tirage tarot gratuit amour du jour tirage carte tarot gratuit amour tarot amerindien en ligne
camoin tarot method tirage tarot gratuite immediate tarot gratuit oui ou non osho zen tarot
avis tirage tarot gratuit mon avenir le pape tarot
signification amour tarot du jour en ligne ton avenir par le tarot divinatoire