This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

CDN Linker lite

Description

Replaces the blog URL by another for all files under wp-content and wp-includes.
That way static content can be handled by a CDN by origin pull. (The origin is your blog address.)

You could upload your static files to S3, CloudFront or just any site, too.
For S3/Cloudfront, see this script
to help you with uploading/synchronizing your blog files.

This lite version of the plugin works like the regular version but is not supported.
You can get the regular version at Github, which:

  • Is free of charge, open source and without any ads.
  • Supported. Here is the bug tracker if you encounter any issues.
  • Has more and advanced features.
  • Is updated more frequently. See Downloads.
  • Quality assurance.

Installation

  1. Setup your CDN: Either configure an origin pull, mirror bucket or upload your static files somewhere.
  2. Upload the plugin to your /wp-content/plugins/ directory.
  3. Activate the plugin through the ‘Plugins’ menu in WordPress.
  4. Provide the URL where your static files can be found under Settings.

FAQ

How to uninstall?

Either deactivate the plugin or delete the plugin’s directory.

Why another such plugin?

As many WP plugins don’t correctly include JS and CSS files most of the current CDN plugins cannot
rewrite links correctly. They rely on the high-level WP API.

This plugin does its rewriting on the lowest level possible – PHP itself.

How does it work?

After your blog pages have been rendered but before sending them to the visitor,
it will rewrite links pointing to wp-content and wp-includes. That rewriting will simply
replace your blog URL with that you have entered in settings screen.

Thus files are pulled from the other site.

Is it compatible to plugin XY?

Yes, by design it is compatible to all plugins. It hooks into a PHP function (ob_start)
and there does the string replacement. Therefore, no WordPress function is altered, overwritten or modified in any way.

Indeed, you could even copy this plugin’s rewriter into any arbitrary PHP software.

Where can I see it in action?

On my own blog, Mark’s blog. See the source code of any page.

Will it work with my CDN?

Yes, if it supports origin pull (aka mirror bucket, some sort of caching). Or if you upload your files manually.

What about Amazon’s S3?

Right, S3 doesn’t support origin pull. You will have to upload your files by hand.
I’ve written a script for this, too, so it is just a matter of running it. It is linked on the bottom of my blog post about copying files to S3.

What other plugins do you recommend?

Now that you can offload all the files such as images, music or CSS, you should serve your blog posts as static files to decrease load on your server.
I recommend SuperCache-Plus
as it will maintain, update and create that static files from dynamic content for you.
The off-linker is compatible.

Alternatives?

The experts at Arcostream currently develop (or have it ready by now) a plugin which enables you to set up a CDN at their’s
with one click or two. Without any configuration, everything is automatic. Please google their licensed flavour of this plugin. 😉

I discovered a bug!

If you are using the lite version, please upgrade.
The following applies only to the regular version which you can find at Github.

Share it with me! The rarer a species, the more interesting. But I will need its habitat, too.
Therefore, please send me at least one page with the plugin turned off and on, as attachment.

Reviews

ستمبر 3, 2016
I've established blog from a year. When I tried this plugin, it didn't automatically converted my link to CDN path. I think KeyCDN enabler is better..
ستمبر 3, 2016
Recommended to use with W3TC with good origin pull CDN. W3TC infamously gives errors with the CDN part. Use the GitHub version by Author.
Read all 3 reviews

Contributors & Developers

“CDN Linker lite” is open source software. The following people have contributed to this plugin.

Contributors

Translate “CDN Linker lite” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

1.3.1

  • Lite version. With less features, but as simple as the original.

1.3.0

  • Support for multiple CDN (domain) names. (Idea by “ericesev” and “digory”. You’re great!)
  • New option to rewrite “root-relative” links has been added. (As suggested by Tony Stuck. Thanks!)
  • The plugin has been rewritten and received unit tests.

The plugin has been

  • renamed to “CDN Linker” and
  • moved to Github.

1.1.1

  • version bump due to WordPress’ plugin page having released the plugin prematurely

1.1.0

  • an input field has been added for defining matches that shall be excluded from rewriting
  • added the feature to include additional (to wp-content and wp-includes) directories for rewriting
  • fixed: bug which messed with urls located at the root level of the site, introduced in 1.0.2 (thanks to Vic Holtreman for reporting)

1.0.2

  • rewriting of URLs from embedded style=xy:url(...) CSS attributes
  • fixed: wrongful rewrite of links into the blogs root directory (thanks to Greg Winn for reporting)

1.0.1

  • support for off-loading files in root directory, such as favicon.ico or apple-touch-icon.png

1.0

  • initial version, as published on my blog