Default setup for custom avatars is in /customavatars ..... (if you don't change it in the CP) so you would have to either (1) move the user avatars over to the image directory and 301 everything in images or (2) 301 custom avatars, or (3) use RR and replace $post[avatarurl] with http://yourcdn.net/$post[avatarurl]
Anway, I'll read your post where you outlined how you did it....
We used RR for /clientscript when we moved to AWS Cloudfront, then we changed the StyleVars in the templates for the style images. I hand coded a new phrase $vbphase['cdn_image_bucket'] and put that in a few places.....
Guess I'll RR or 301 the custom avatars over to SimpleCDN and give it a go :-)
--------------- Added [DATE]1251153995[/DATE] at [TIME]1251153995[/TIME] ---------------
Note, for customavatars in postbit you can either use an RR or edit the template to change:
Quote:
<img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" />
|
To
Quote:
<img src="$vbphrase[image_bucket_url]/$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" />
|
Assuming you have your CDN URL in $vbphrase[image_bucket_url] .....
Cheers.