George

I'm a web designer and have been doing websites for pay since 2001. I think websites should be usable by visitors and ready for search engines to index easily so they can be found. Read more on my about page.

Homepage: http://imblogginghere.com/techblog/


Posts by George

htaccess Rewrite URL to www – or No www

To make ALL visits to your website go to your website with www. (www.example.com) or without it (example.com) use the following code in your .htaccess file. The idea is that some search engines (or at least the important ones) will direct “search engine juice” to one of your URL’s instead of splitting it between 2, and Web Analytics programs list one URL per page instead of 2:

KEEP WWW.

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

REMOVE WWW.

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule ^.*$ http://example.com%{REQUEST_URI} [R=301,L]

This way no matter what a web visitor types they are sent to your website with or without the www, and as mentioned above benefits SEO and Analytics.

Gmail Video Chat Enhanced, Better Tasting!

Gmail Video Newsbit (big news if you do Video Chat) … Okay, the taste hasn’t improved but the Gmail blog has announced crisper video chatting in the form of higher resolution video chat that “… enables widescreen VGA and frees up valuable resources on your computer.”

Read all about New in Labs: Video chat enhancements on the Gmail blog, live and online 24 hours a day, 7 days a week.