Amazon CloudFront est un réseau de distribution de contenu (CDN) qui peut vous aider à survivre à une charge considérable en très peu de temps. Quel est le moyen le plus simple de configurer WordPress pour héberger ses fichiers (médiathèque, CSS, fichiers de plugin, thème) sur S3/CloudFront?
(J'utilise actuellement W3 Total Cache pour le faire.)
Le plugin fonctionne bien; Vous pouvez également utiliser une fonction propre pour remplacer le bloginf () par votre URL CDN; Exemple:
remplacez l'URL dans le contenu:
// replace content for CDN
if ( !function_exists('fb_add_static_content_url') ) {
function fb_add_static_content_url($content) {
if ( is_admin() ) // eigentlich überflüssig
return $content;
$wpurl = get_bloginfo('wpurl');
$search = array(
$wpurl . '/wp-content/images/',
$wpurl . '/wp-content/download/',
);
$replace = array(
'http://cdn1.bueltge.de/',
'http://cdn2.bueltge.de/',
);
return str_replace( $search, $replace, $content );
}
add_filter( 'the_content', 'fb_add_static_content_url' );
}
remplacez stylesheet_directoy et autres:
// replace for CDN
if ( !function_exists('fb_add_static_wpurl') ) {
function fb_add_static_wpurl($info, $show) {
if ( is_admin() )
return $info;
$keys = array(
'url',
'wpurl',
'stylesheet_url',
'stylesheet_directory',
'template_url',
'template_directory',
);
if ( in_array( $show, $keys ) ) {
$wpurl = get_bloginfo('wpurl');
$search = array(
$wpurl . '/wp-content/images/',
$wpurl . '/wp-content/download/',
$wpurl . '/wp-content/themes/',
$wpurl . '/wp-content/plugins/',
);
$replace = array(
'http://cdn1.bueltge.de/',
'http://cdn2.bueltge.de/',
'http://cdn3.bueltge.de/',
'http://cdn3.bueltge.de/',
);
return str_replace( $search, $replace, $info );
} else {
return $info;
}
}
add_filter( 'bloginfo_url', 'fb_add_static_wpurl', 9999, 2 );
}
remplace le template_directory et autre:
function fb_add_static_stylesheet_uri($uri) {
if ( is_admin() )
return $uri;
$wpurl = get_bloginfo('wpurl');
$search = array(
$wpurl . '/wp-content/images/',
$wpurl . '/wp-content/download/',
$wpurl . '/wp-content/themes/',
$wpurl . '/wp-content/plugins/',
);
$replace = array(
'http://cdn1.bueltge.de/',
'http://cdn2.bueltge.de/',
'http://cdn3.bueltge.de/',
'http://cdn3.bueltge.de/',
);
return str_replace( $search, $replace, $uri );
}
add_filter ( 'template_directory_uri', 'fb_add_static_stylesheet_uri' );
add_filter ( 'stylesheet_uri', 'fb_add_static_stylesheet_uri' );
add_filter ( 'stylesheet_directory_uri', 'fb_add_static_stylesheet_uri' );
Je pense que le plugin W3 Total Cache peut vous aider.