<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TechniTip.Net &#187; google</title>
	<atom:link href="http://technitip.net/tag/google/feed" rel="self" type="application/rss+xml" />
	<link>http://technitip.net</link>
	<description>TechniTip.Net - Useful tips regarding technical stuff for things like Linux, MySQL, Apache, PHP, Linux Server, iPhone and more.</description>
	<lastBuildDate>Fri, 03 Feb 2012 18:31:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<image>
<link>http://technitip.net</link>
<url>http://technitip.net/wp-content/plugins/maxblogpress-favicon/icons/favicon-66.ico</url>
<title>TechniTip.Net</title>
</image>
		<item>
		<title>Domain Redirects</title>
		<link>http://technitip.net/domain-redirects</link>
		<comments>http://technitip.net/domain-redirects#comments</comments>
		<pubDate>Fri, 16 Jan 2009 19:18:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[avoid]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[double]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://technitip.net/?p=353</guid>
		<description><![CDATA[Avoid Double Content There are two reasons to redirect e.g. mydomain1.de to www.mydomain1.de: It avoids detecting search machines &#8220;double content&#8221; I personally prefer having one unique URL for a homepage, also if a user enters mydomain1.de he will be redirected to www.mydomain1.de RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^mydomain\.de$ [NC] RewriteRule ^(.*) http://www.mydomain.de/$1 [L,R=301] The [...]<div style="clear: both;">
<strong>Related posts:</strong><ol>
<li><a href='http://technitip.net/iphone-whois-tool-domain-scout' rel='bookmark' title='Whois Tool &#8220;Domain Scout&#8221; for iPhone'>Whois Tool &#8220;Domain Scout&#8221; for iPhone</a></li>
<li><a href='http://technitip.net/apache-tuning-part-1' rel='bookmark' title='Apache Tuning Part 1'>Apache Tuning Part 1</a></li>
<li><a href='http://technitip.net/apache-tuning-part-2' rel='bookmark' title='Apache Tuning Part 2'>Apache Tuning Part 2</a></li>
</ol></div>]]></description>
			<content:encoded><![CDATA[<p><strong>Avoid Double Content</strong></p>
<p>There are two reasons to redirect e.g. mydomain1.de to www.mydomain1.de:</p>
<ol>
<li>It avoids detecting search machines &#8220;double content&#8221;</li>
<li>I personally prefer having one unique URL for a homepage, also if a user enters mydomain1.de he will be redirected to www.mydomain1.de</li>
</ol>
<pre>RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} ^mydomain\.de$ [NC]
RewriteRule ^(.*) http://www.mydomain.de/$1 [L,R=301]</pre>
<p>The redirect is defined as 301 &#8220;permanent&#8221;. Please note that these rewrite settings only work if the correct setting for &#8220;AllowOverride&#8221; is done within the Apache settings of your host or virtual host configuration.</p>
<p><strong>Redirect Domain to another Domain</strong></p>
<p>If you want to redirect a complete domain, here mydomain1.de including subdomains to another domain e.g. mydomain2.de put the following code into the .htaccess of the web root directory of mydomain1.de:</p>
<pre>RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^(.*)mydomain1\.de$
RewriteRule ^(.*)$ http://www.mydomain2.de/$1 [R=301,L,NC]</pre>
<p>Using this rewrite condition all hosts *.mydomain1.de including mydomain1.de will be redirected to www.mydomain2.de. Everything behind .de/ will be kept.</p>
<p>Furthermore the redirect is defined as 301 which means permanent redirect. This will avoid that search machines like Goole will treat you with &#8220;double content&#8221;.</p>
<p><strong>Hint</strong></p>
<p>Be sure you have enabled &#8220;Options FollowSymLinks&#8221; or Options &#8220;SymLinksIfOwnerMatch&#8221; in your Apache or virtual host config. Otherwise mod rewrite will not work!</p>
<p>Working with Apache/2.2.3</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ftechnitip.net%2Fdomain-redirects&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div style="clear: both;"><p><strong>Related posts:</strong><ol>
<li><a href='http://technitip.net/iphone-whois-tool-domain-scout' rel='bookmark' title='Whois Tool &#8220;Domain Scout&#8221; for iPhone'>Whois Tool &#8220;Domain Scout&#8221; for iPhone</a></li>
<li><a href='http://technitip.net/apache-tuning-part-1' rel='bookmark' title='Apache Tuning Part 1'>Apache Tuning Part 1</a></li>
<li><a href='http://technitip.net/apache-tuning-part-2' rel='bookmark' title='Apache Tuning Part 2'>Apache Tuning Part 2</a></li>
</ol></p></div>]]></content:encoded>
			<wfw:commentRss>http://technitip.net/domain-redirects/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice Free Photo Organizer &#8220;Google Picasa&#8221;</title>
		<link>http://technitip.net/nice-free-photo-organizer-google-picasa</link>
		<comments>http://technitip.net/nice-free-photo-organizer-google-picasa#comments</comments>
		<pubDate>Fri, 02 Jan 2009 17:33:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[organizer]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[picasa]]></category>

		<guid isPermaLink="false">http://technitip.net/?p=173</guid>
		<description><![CDATA[Digital photo cameras are nowadays every where. Photographing got easy and cheap for everyone. So there is a need to organize your photos easily. A cute nice tool for doing this is Google Picasa. And it&#8217;s free. It&#8217;s also available in German language. I like it because it&#8217;s really easy to use and it offers [...]<div style="clear: both;">
<strong>Related posts:</strong><ol>
<li><a href='http://technitip.net/simple-free-setup-builder' rel='bookmark' title='Simple Free Setup Builder'>Simple Free Setup Builder</a></li>
<li><a href='http://technitip.net/free-cddvdblu-rayhd-dvd-buring-application-starburn' rel='bookmark' title='Free CD/DVD/Blu-Ray/HD-DVD Buring Application &#8220;StarBurn&#8221;'>Free CD/DVD/Blu-Ray/HD-DVD Buring Application &#8220;StarBurn&#8221;</a></li>
<li><a href='http://technitip.net/free-defragmentation-tool-defraggler' rel='bookmark' title='Free Defragmentation Tool &#8220;Defraggler&#8221;'>Free Defragmentation Tool &#8220;Defraggler&#8221;</a></li>
</ol></div>]]></description>
			<content:encoded><![CDATA[<table style="height: 22px;" border="0" width="100%">
<tbody>
<tr>
<td>
<a href="http://technitip.net/wp-content/gallery/test/picasa-3-02012009-181832.jpg" title="" class="shutterset_singlepic5" >
	<img class="ngg-singlepic ngg-center" src="http://technitip.net/wp-content/gallery/cache/5__580x435_picasa-3-02012009-181832.jpg" alt="picasa-3-02012009-181832.jpg" title="picasa-3-02012009-181832.jpg" />
</a>
</td>
</tr>
</tbody>
</table>
<p>Digital photo cameras are nowadays every where. Photographing got easy and cheap for everyone. So there is a need to organize your photos easily. A cute nice tool for doing this is <a title="Google Picasa" href="http://picasa.google.com/" target="_blank">Google Picasa</a>. And it&#8217;s free. It&#8217;s also available in <a title="Google Picasa" href="http://picasa.google.de/" target="_blank">German language</a>.</p>
<p>I like it because it&#8217;s really easy to use and it offers many features:</p>
<ul>
<li>Organize photos</li>
<li>Edit photos</li>
<li>Create slideshows and more</li>
<li>Share photos using Picasa Web Albums</li>
</ul>
<p>Or you can generate collages, slideshow movies with one click like the following (pictures are taken at Port of Hamburg):</p>
<table style="height: 22px;" border="0" width="100%">
<tbody>
<tr>
<td>
<a href="http://technitip.net/wp-content/gallery/test/hamburg.jpg" title="" class="shutterset_singlepic9" >
	<img class="ngg-singlepic ngg-center" src="http://technitip.net/wp-content/gallery/cache/9__580x435_hamburg.jpg" alt="hamburg.jpg" title="hamburg.jpg" />
</a>
</td>
</tr>
</tbody>
</table>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ftechnitip.net%2Fnice-free-photo-organizer-google-picasa&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div style="clear: both;"><p><strong>Related posts:</strong><ol>
<li><a href='http://technitip.net/simple-free-setup-builder' rel='bookmark' title='Simple Free Setup Builder'>Simple Free Setup Builder</a></li>
<li><a href='http://technitip.net/free-cddvdblu-rayhd-dvd-buring-application-starburn' rel='bookmark' title='Free CD/DVD/Blu-Ray/HD-DVD Buring Application &#8220;StarBurn&#8221;'>Free CD/DVD/Blu-Ray/HD-DVD Buring Application &#8220;StarBurn&#8221;</a></li>
<li><a href='http://technitip.net/free-defragmentation-tool-defraggler' rel='bookmark' title='Free Defragmentation Tool &#8220;Defraggler&#8221;'>Free Defragmentation Tool &#8220;Defraggler&#8221;</a></li>
</ol></p></div>]]></content:encoded>
			<wfw:commentRss>http://technitip.net/nice-free-photo-organizer-google-picasa/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

