Blog Now Hosted At Wordpress.com, Redirects All Setup, Crossing Fingers
I moved this blog to http://blog.semergence.com which is now hosted on wordpress.com. I just didn't feel the need to continue to host my own installation of wordpress.org, which was always out of date anyway. Plus, everything else in my life is either rented or a service, so why not my blog?
I told Apache to redirect everything from www.semergence.com that is NOT a file over to blog.semergence.com. Here's how I did it:
Hopefully your feed reader respects the redirects! And thanks for following!
I told Apache to redirect everything from www.semergence.com that is NOT a file over to blog.semergence.com. Here's how I did it:
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)$ http://blog.semergence.com%{REQUEST_URI} [R=permanent,QSA,L]
Hopefully your feed reader respects the redirects! And thanks for following!