当前位置:首页 > CMS教程 > WordPress > 列表

WordPress 非插件实现静态资源CDN加速 及 又拍云、七牛CDN配置

发布:smiling 来源: PHP粉丝网  添加日期:2015-05-07 15:26:05 浏览: 评论:0 

本文我们来分享一个 WordPress 非插件纯代码实现的静态资源CDN加速的功能,文章后面我们再将告诉你如何在又拍云、七牛CDN加速配置.

先我们看看实现CDN加速功能的步骤,将本地图片地址替换为CDN地址,添加至主题目录functions.php中:

  1. define('CDN_HOST','http://cdn.mywpku.com'); 
  2. add_filter('the_content','z_cdn_content'); 
  3. function z_cdn_content($content){ 
  4.   return str_replace(home_url().'/wp-content/uploads', CDN_HOST.'/wp-content/uploads'$content); 
  5.   } 
  6.   add_filter('wp_get_attachment_url','z_get_attachment_url',10,2); 
  7. function z_get_attachment_url($url$post_id){ 
  8.   return str_replace(home_url(), CDN_HOST, $url); 
  9.   } 

注意 define('CDN_HOST','http://cdn.mywpku.com'); 需要替换为你自己的CDN地址,将主题静态资源地址替换为CDN地址,添加至主题目录functions.php中:

  1. add_filter('stylesheet_directory_uri','z_cdn_stylesheet_directory_uri',10,3); 
  2. function z_cdn_stylesheet_directory_uri($stylesheet_dir_uri$stylesheet$theme_root_uri) { 
  3.    return str_replace(home_url(), CDN_HOST, $stylesheet_dir_uri); 
  4. add_filter('template_directory_uri','z_cdn_template_directory_uri',10,3); 
  5. function z_cdn_template_directory_uri($template_dir_uri$template$theme_root_uri)
  6.    return str_replace(home_url(), CDN_HOST, $template_dir_uri); 

将 wp-content / wp-includes 静态资源替换为CDN地址.

  1. @Via:http://www.phpfensi.com/jianzhan/2282.html 
  2.  
  3. define('FocusCDNHost','http://ehsren.com');//wordpress网站网址 
  4. define('FocusCDNRemote','http://cdn.ehsren.com');//cdn域名 
  5. define('FocusCDNIncludes','wp-content,wp-includes');//设置加速目录 
  6. define('FocusCDNExcludes','.php|.xml|.html|.po|.mo');//设置文件白名单 
  7. define('FocusCDNRelative','');//Check this if you want to have links like <wp-content/abc.png> rewritten - i.e. without your blog's domain as prefix. 
  8.    
  9. function do_cdnrewrite_ob_start() { 
  10. $rewriter = new FocusCDNRewriteWordpress(); 
  11. $rewriter->register_as_output_buffer(); 
  12. add_action('template_redirect''do_cdnrewrite_ob_start'); 
  13.    
  14. class FocusCDNRewriteWordpress extends FocusCDNRewrite 
  15. function __construct() { 
  16. $excl_tmp = FocusCDNExcludes; 
  17. $excludes = array_map('trim'explode('|'$excl_tmp)); 
  18.    
  19. parent::__construct( 
  20. FocusCDNHost, 
  21. FocusCDNRemote, 
  22. FocusCDNIncludes, 
  23. $excludes
  24. !!FocusCDNRelative 
  25. ); 
  26. public function register_as_output_buffer() { 
  27. if ($this->blog_url != FocusCDNRemote) { 
  28. ob_start(array(&$this'rewrite')); 
  29.    
  30.    
  31. class FocusCDNRewrite { 
  32. var $blog_url    = null; 
  33. var $cdn_url     = null; 
  34. var $include_dirs   = null; 
  35. var $excludes    = array(); 
  36. var $rootrelative   = false; 
  37.    
  38. function __construct($blog_url$cdn_url$include_dirsarray $excludes$root_relative) { 
  39. $this->blog_url   = $blog_url
  40. $this->cdn_url    = $cdn_url
  41. $this->include_dirs  = $include_dirs
  42. $this->excludes   = $excludes
  43. $this->rootrelative  = $root_relative
  44.    
  45. protected function exclude_single(&$match) { 
  46. foreach ($this->excludes as $badword) { 
  47. if (stristr($match$badword) != false) { 
  48. return true; 
  49. return false; 
  50.    
  51. protected function rewrite_single(&$match) { 
  52. if ($this->exclude_single($match[0])) { 
  53. return $match[0]; 
  54. else { 
  55. if (!$this->rootrelative || strstr($match[0], $this->blog_url)) { 
  56. return str_replace($this->blog_url, $this->cdn_url, $match[0]); 
  57. else { 
  58. return $this->cdn_url . $match[0]; 
  59.    
  60. protected function include_dirs_to_pattern() { 
  61. $input = explode(','$this->include_dirs); 
  62. if ($this->include_dirs == '' || count($input) < 1) { 
  63. return 'wp\-content|wp\-includes'
  64. else { 
  65. return implode('|'array_map('quotemeta'array_map('trim'$input))); 
  66.    
  67. public function rewrite(&$content) { 
  68. $dirs = $this->include_dirs_to_pattern(); 
  69. $regex = '#(?<=[(\"\'])'
  70. $regex .= $this->rootrelative 
  71. ? ('(?:'.quotemeta($this->blog_url).')?'
  72. : quotemeta($this->blog_url); 
  73. $regex .= '/(?:((?:'.$dirs.')[^\"\')]+)|([^/\"\']+\.[^/\"\')]+))(?=[\"\')])#'
  74. return preg_replace_callback($regexarray(&$this'rewrite_single'), $content); 
  75.    

wordpress免插件纯代码实现又拍云、七牛CDN加速

wordpress七牛镜像存储插件,WP SUPER CACHE等里面的CDN功能,都可以用代码方式实现,在七牛或者又拍云设置好CDN后,将下面代码仍入主题的functions.php函数文件中即可.

Tags: WordPress加速 CDN加速

分享到: