* You are viewing the archive for the ‘Internet Stuff’ Category

Photo Blogging with your iPhone

I have finally figured out how to photo blog with my new iPhone 4 and you can do it too.

First make sure you have the newest version of WordPress installed on your website. If you need to find a web host go to www.cheaphostingcompared.com

After you have WordPress installed, install the plugin called Postie. You’ll need to install and setup Postie to use your email server and special email address that’s used only for sending posts to your blog.

If you try to … Continue Reading

.htaccess from one subdomain to another subdomain

I had a problem that I’ve solved that I’d like to share with all 1 of my readers. I maintain a website that has 2 subdomains with one of the subdomains existing for the sole purpose of catching a typing error. I want all traffic on that subdomain redirected to another subdomain of the same site. I’m using .htaccess to solve the problem.

sub.domain.com redirected to subs.domain.com

Use this in your .htaccess file:

Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} !^subs\.domain\.com
RewriteRule ^(.*)$ http://subs.domain.com/$1