当前位置:首页 > WordPress教程代码·功能 > 正文

WordPress非插件使用七牛云存储、又拍云

以前介绍过使用七牛云加速,自我感觉七牛还是蛮不错的。 当然又拍云也可以啦!

关于七牛云存储的好处我们不多说了,它可以把我们网站的css.js.图片等全部放在七牛进行加速

虽然有免费流量的限制但是小站基本上够用,幻杀使用后感觉速度提升还是很明显的。

幻杀使用的插件,是我爱水煮鱼开发的七牛云存储插件,但是使用P3(点击这里查看)进行检测时,显示居然很坑速度,本来我还是很喜欢插件,但是对速度好吧……我不说了。

嗯,这个方法你可以选择用代码的,当然也可以不用代码的,如果都嫌烦那么还是用插件吧 关于

多方法可以选择性共同使用,记住是选择 !选择哟!记住看最后的评论再选择!

七牛云加速-幻杀博客

方法1:

把这个插件代码化,这样就不用插件了。 打开你主题文件中的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进行加速,对图片无效!

方法2:

使用上边方法加速效果不好?一般大家站点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,图片在本地回自动保留一份!

方法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

方法二,可以加速图片等通过上传方式上传的文件,但是缺点是文件没有在本地进行备份而是直接去了七牛!

方法三,可控可存 可以控制文件储存白名单,文件也会在本地有储存!

你可以依据此说明进行一下选择,选择哟,出错咱不管!!!

好了,又可以干掉一个插件,麻麻再也不用怕插件多了!

标签:
上一篇: 下一篇:

821 条评论

评论加载中...
  1. The film in query is referred to as Dog Days.

    2018年7月21日 22:50 评论
  2. Excellent goods from you, man. I have keep in mind your stuff
    prior to and you’re just too magnificent. I really like what you’ve
    bought here, really like what you are stating and the way in which you say
    it. You are making it enjoyable and you continue to take care of to keep it sensible.

    I cant wait to learn far more from you. That is really a tremendous site.

    2018年7月21日 22:30 评论
  3. I am curious to find out what blog system you have been utilizing?
    I’m experiencing some minor security problems with my latest blog and
    I’d like to find something more safe. Do you have any suggestions?

    2018年7月21日 22:00 评论
  4. To the Movies opens in theaters July 27.

    2018年7月21日 14:59 评论
  5. 86楼
    这家伙可能用了美佬的代理 火狐浏览器 Windows 7
    sasha porno  

    sexo cornella sasha porno sexo tube gratis vidros porno porno embarazadas porno latino historias de sexo gay telefono sexo
    gratis videos porno masajistas videos pornograficos xxx porno mandingo telefono sexo gratis porno espanol intercambio vedeo sexo videos porno petardas video
    porno madres video porno colombiano follar sexo juegos
    de sexo duro porno esapnol videos porno totalmente gratis porno gore descargar peliculas porno porno gratis casero espanol videos de sexo playero porno
    viejas juegos pornograficos porno lazy town videos porno hombres descargar peliculas porno gratis fotos porno rubias sexo brasileno sexo telefonico barato chat espana sexo videos porno
    gratis espanoles sexo natural madrid videos porno swinger sexo en mi ciudad vidios porno gratis en espanol videos
    porno gratis en castellano mejor web porno porno de china ver videos
    porno maduras gratis videos porno anime test sobre sexo sexo la rioja relatis
    porno videos porno follando sexo gratis en bilbao videos porno gratis anime porno gratis

    2018年7月21日 02:01 评论
  6. horoscope quiz woozworld virgo horoscope tomorrow in hindi
    world’s most reliable horoscope horoscope for august 31 2017 sag horoscope love
    today june 2 1997 horoscope chinese horoscope synastry gemini horoscopes for august 2017 july love horoscope sagittarius
    ganesha horoscope leo gemini horoscope daily horoscope for tommorrow the province news horoscopes weekly love horoscope for libra yahoo sign horoscope today
    free love horoscopes astrolis pisces and scorpio daily love
    horoscope june 12 1997 horoscope sag daily horoscope love daily aries
    horoscope new york horoscope aquarius career today horoscope leo yesterday love daily horoscope for gemini
    kasamba weekend horoscope my daily love horoscope capricorn ganesha monthly horoscope leo horoscope you born today leo horoscope relationship
    today horoscope daily libra today monthly horoscope leo elle
    dell horoscope virgo libra woman capricorn man horoscope kim kardashian horoscope free weekly cancer horoscope what is my
    horoscope today capricorn horoscopes for the week sagittarius what is your horoscope pharaoh horoscope
    scorpios love horoscope horoscope by date of birth 2017 finding
    horoscope by name weekly love horoscope for scorpio daily love
    horoscope virgo and cancer scorpio horoscope for july
    21 2017 direct tv horoscopes capricorn love horoscope week ahead gemini horoscope lady daily love horoscope for gemini and leo find your horoscope for
    today january 7 born horoscope daily horoscope stariq

    2018年7月21日 01:50 评论
  7. carteras hermes replica herrajes para hermes replica jypsiere for sale udnmaihgntd

    2018年7月21日 01:42 评论
  8. tarot facile oui non tarot journalier gratuit tirage carte tarot
    amour tarot mathers tarots persan association justice jugement tarot tarot boule magique tarot poignee 4 joueurs tarot futur gratuit
    tarot gratuit tarot marseille tarot immediat oui non tirage
    carte gratuit tarot belline carte tarot interpretation tirage tarot gratuit rtl
    tirage tarot amour belline tarot selon ton avenir signification lame tarot etoile
    newage tarot tirage tarot en ligne amour femme actuelle tarot tarot gratuite en ligne sans attente tirage tarots gratuits avenir
    tirage carte tarot rune gratuit tarot virtuelle gratuit signification tirage
    tarot l’amoureux tirage tarot en ligne gratuit travail
    tarot gratuit voyance web tarot a forca voyance tarot
    en ligne application tarot a 5 tarots tirage
    en croix tarot blog tarot gratuit travail en ligne
    tarot logiciel tirage carte tarot en ligne gratuit tarot multijoueurs voyance tarot amour gratuit tarot souffle d’or tirage tarot gratuit immediatement tarot pierre lassalle tarot tirage gratuit amour jeux gratuit
    tarot en ligne tarot divinatoire celibataire tirage tarot 1 carte gratuit tarot gratuit avenir amoureux association justice jugement tarot tarot amoureux hermite avenir selon le tarot divinatoire tarot astrologique interpretation tarot tirage gratuit en croix carte tarot la force en amour

    2018年7月21日 01:42 评论
  9. plan cul 66 plan cul herault plan cul reims plan cul lognes plan cul villers cotterets plan cul rumilly plan cul avec beurette plan cul meudon plan cul dans ta region plan cul sur nantes site gratuit pour plan cul plan cul gratuit et
    sans inscription rencontrer un plan cul
    plan cul port de bouc cherche homme plan cul plan cul
    somme plan cul 24 plan cul franche comte plan cul yvelines plan cul stiring wendel plan cul 85 plan cul clermont plan cul montceau les mines plan cul 20
    plan cul villefontaine plan cul martinique plan cul a lille plan cul arcachon plan cul gien plan cul local
    plan cul sur la rochelle plan cul landes site de plan cul sans inscription plan cul france annuaire plan cul plan cul saint ouen les plans cul plan cul saint etienne du
    rouvray plan cul le mans plan cul loir et cher plan cul pierre benite plan cul
    femme mature plan cul cherbourg octeville plan cul clermont plan cul gratuit
    sans abonnement plan cul bordeaux plan cul martigues plan cul herault plan cul
    sur lorient plan cul en moselle montpellier plan cul

    2018年7月21日 01:36 评论
  10. comment rencontrer des filles site de rencontre gratuit 10 sans inscription rencontre amicale
    amiens rencontre femme 14 porno rencontre rencontre des filles rencontre
    homme celibataire gratuit site de rencontre femme cougar rencontre sur mobile site de rencontre militaire gratuit rencontre sexe
    orleans voir tout les site de rencontre gratuit site de rencontre
    handicape valide gratuit paris rencontres amicales rencontre amiens forum de rencontre
    amicale sms rencontre rencontre coquine montauban rencontre trans aix en provence rencontre
    fille ronde site de rencontres 100 gratuit sans inscription exemple
    de message pour site de rencontre rencontre sexe en suisse rencontre seniors picardie application android rencontre cougar applications rencontres geolocalisees application rencontre train application de rencontre windows phone rencontres versailles sites de rencontres d’amis en perigord site de rencontre gratuit 57 ado rencontre 17 gratuit rencontre seniors gers rencontre femme a tours rencontre pour baise rencontres 100 gratuites rencontres
    site sites de rencontres haut de gamme pour seniors rencontre coquine
    gironde voir tout les site de rencontre gratuit travestie rencontre ou rencontrer des gens a londres rencontre coquine skype speed dating la rencontre annecy rencontrer ?????????
    rencontres seniors aquitaine rencontres nantes site rencontre pour ado sortir ensemble site de rencontre trav rencontres nord sud site de rencontre
    cocine

    2018年7月21日 01:35 评论

发表评论

不理你。不要啊!吃饭。吃惊。吃西瓜。飞吻!恭喜!Hi纠结!膜拜!OK抛媚眼。泡泡糖。抛钱。忍!生闷气!调皮。偷看。委屈。献花。疑问?抓狂!

小提示:Ctrl+Enter快速提交助您一臂之力~
加载中……