Yes!
A long time ago (in this galaxy, not one far away), after reading Daniel’s WWW or no-WWW? post I implemented an Apache redirect in my .htaccess file to redirect my non-www address to www.adampieniazek.com/. It worked, but all non-www addresses would redirect to my homepage instead of to each individual page (for instance, adampieniazek.com/about/ would go to www.adampieniazek.com instead of to www.adampieniazek.com/about/). Well, it kept bugging me and bugging me and I kept trying alternate ways to get this to work properly and today it finally works right!
Here’s the piece of code that finally sorted out the kinks:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^\.adampieniazek\.com$ [NC]
RewriteRule ^(.*)$ http://adamp.wp42.com/$1 [R=301,L]
Credit goes to the good people at no-www for putting the code in their FAQ (though switched to redirect the www address to the non-www address).
If anyone experiences any issues, please drop me a quick line.