<?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>Amit Savyon &#124; Marketing &#38; Designing Online Experiences Since 1999</title>
	<atom:link href="http://amitsavyon.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://amitsavyon.com</link>
	<description></description>
	<lastBuildDate>Fri, 06 Jan 2012 21:42:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Host Multiple Domains On One IP [.htaccess]</title>
		<link>http://amitsavyon.com/resources/host-multiple-domains-on-one-ip-htaccess/</link>
		<comments>http://amitsavyon.com/resources/host-multiple-domains-on-one-ip-htaccess/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 07:24:52 +0000</pubDate>
		<dc:creator>Amit Savyon</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://amitsavyon.com/?p=1429</guid>
		<description><![CDATA[1) Get hosting account with dedicated IP address 2) Make a sub-folder called /otherdomains/ 3) Inside of that folder, add a new folder for each new domain you want to host there.  I.E. /mynewdomain.com/ or /coolslicksite.org/ 4) In the root folder (where the IP address defaults to) put this in the .htaccess file RewriteEngine On [...]]]></description>
			<content:encoded><![CDATA[<p>1) Get hosting account with dedicated IP address</p>
<p>2) Make a sub-folder called /otherdomains/</p>
<p>3) Inside of that folder, add a new folder for each new domain you want to host there.  I.E. /mynewdomain.com/ or /coolslicksite.org/</p>
<p>4) In the root folder (where the IP address defaults to) put this in the .htaccess file</p>
<blockquote><p><em>RewriteEngine On<br />
Options +FollowSymlinks</em></p>
<p><em># Check if directory exists, than point domain to it.<br />
RewriteCond %{REQUEST_FILENAME} -d<br />
RewriteRule ^(.+[^/])$ $1/ [L]</em></p>
<p><em>RewriteCond %{HTTP_HOST} !^(www\.)?yourmainsite\.com$<br />
RewriteCond %{HTTP_HOST} ^([^.]+\.)?(.*)$<br />
RewriteCond %{HTTP_HOST} ^(www\.)?(.*)$<br />
RewriteCond /full/server/path/to/otherdomains/%2 -d<br />
RewriteCond %{REQUEST_URI} !/otherdomains/<br />
RewriteRule ^(.*)$ otherdomains/%2/$1 [L]</em></p>
<p><em>AddHandler server-parsed .html .htm</em></p></blockquote>
<p>6) Point other domains&#8217; A-Records at the IP Address of this location<em><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://amitsavyon.com/resources/host-multiple-domains-on-one-ip-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prevent Hotlinking To Images [.htacces]</title>
		<link>http://amitsavyon.com/resources/prevent-hotlinking-to-images-htacces/</link>
		<comments>http://amitsavyon.com/resources/prevent-hotlinking-to-images-htacces/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 07:17:40 +0000</pubDate>
		<dc:creator>Amit Savyon</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://amitsavyon.com/?p=1423</guid>
		<description><![CDATA[RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?domain.com/.*$ [NC] RewriteRule \.(gif&#124;jpg)$ &#8211; [F]]]></description>
			<content:encoded><![CDATA[<p>RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http://(www\.)?domain.com/.*$ [NC]<br />
RewriteRule \.(gif|jpg)$ &#8211; [F]</p>
]]></content:encoded>
			<wfw:commentRss>http://amitsavyon.com/resources/prevent-hotlinking-to-images-htacces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Side Include snippets [.htaccess ]</title>
		<link>http://amitsavyon.com/resources/htaccess-server-side-include-snippets/</link>
		<comments>http://amitsavyon.com/resources/htaccess-server-side-include-snippets/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 07:16:17 +0000</pubDate>
		<dc:creator>Amit Savyon</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://amitsavyon.com/?p=1421</guid>
		<description><![CDATA[&#8212;- FOR INCLUDING .INC FILES: &#60;!&#8211;#include virtual=&#8221;file.inc&#8221; &#8211;&#62; AddHandler server-parsed .html .htm Options +FollowSymlinks &#8212; FOR INCLUDING PHP IN .HTML PAGES RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html &#8212; FOR INCLUDING HTML IN HTML PAGES Options +Includes AddType text/html .html AddHandler server-parsed .html]]></description>
			<content:encoded><![CDATA[<p><strong>&#8212;- FOR INCLUDING .INC FILES:</strong><br />
&lt;!&#8211;#include virtual=&#8221;file.inc&#8221; &#8211;&gt;<br />
AddHandler server-parsed .html .htm<br />
Options +FollowSymlinks</p>
<p><strong>&#8212; FOR INCLUDING PHP IN .HTML PAGES<br />
</strong>RemoveHandler .html .htm<br />
AddType application/x-httpd-php .php .htm .html</p>
<p><strong>&#8212; FOR INCLUDING HTML IN HTML PAGES</strong><br />
Options +Includes<br />
AddType text/html .html<br />
AddHandler server-parsed .html</p>
]]></content:encoded>
			<wfw:commentRss>http://amitsavyon.com/resources/htaccess-server-side-include-snippets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Various 301 Redirect Commands [.htaccess]</title>
		<link>http://amitsavyon.com/resources/301-redirects/</link>
		<comments>http://amitsavyon.com/resources/301-redirects/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 07:14:34 +0000</pubDate>
		<dc:creator>Amit Savyon</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://amitsavyon.com/?p=1418</guid>
		<description><![CDATA[&#8212;&#8211; 301 REDIRECT within same site: Options +FollowSymLinks RewriteEngine on RewriteRule ^adobe-premiere/ /blog/category/camcorders/? [R=301,L] &#8212;&#8211; 301 REDIRECT &#8211; entire domain, retaining page structure: Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://subdomain.domain.com/$1 [R=301,L] &#8212;&#8212;- 301 REDIRECT &#8211; page to page Redirect 301 /oldpage.html http://www.example.com/newpage.html]]></description>
			<content:encoded><![CDATA[<p><strong>&#8212;&#8211; 301 REDIRECT within same site:</strong><br />
Options +FollowSymLinks<br />
RewriteEngine on<br />
RewriteRule ^adobe-premiere/ /blog/category/camcorders/? [R=301,L]</p>
<p><strong>&#8212;&#8211; 301 REDIRECT &#8211; entire domain, retaining page structure:</strong><br />
Options +FollowSymLinks<br />
RewriteEngine on<br />
RewriteRule (.*) http://subdomain.domain.com/$1 [R=301,L]</p>
<p><strong>&#8212;&#8212;- 301 REDIRECT &#8211; page to page</strong><br />
Redirect 301 /oldpage.html http://www.example.com/newpage.html</p>
]]></content:encoded>
			<wfw:commentRss>http://amitsavyon.com/resources/301-redirects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable PHP5 on PHP4 Server [.htaccess]</title>
		<link>http://amitsavyon.com/resources/enable-php5-on-php4-server/</link>
		<comments>http://amitsavyon.com/resources/enable-php5-on-php4-server/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 07:04:29 +0000</pubDate>
		<dc:creator>Amit Savyon</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://amitsavyon.com/?p=1412</guid>
		<description><![CDATA[Add this to the .htaccess: AddHandler application/x-httpd-php5 .php]]></description>
			<content:encoded><![CDATA[<p>Add this to the .htaccess:</p>
<blockquote><p><em> AddHandler application/x-httpd-php5 .php</em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://amitsavyon.com/resources/enable-php5-on-php4-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vegas.com &#8211; Interesting Facebook Ad Approach</title>
		<link>http://amitsavyon.com/facebook/vegas-com-interesting-facebook-ad-approach/</link>
		<comments>http://amitsavyon.com/facebook/vegas-com-interesting-facebook-ad-approach/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 22:04:07 +0000</pubDate>
		<dc:creator>Amit Savyon</dc:creator>
				<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://amitsavyon.com/?p=403</guid>
		<description><![CDATA[So here&#8217;s an interesting approach I&#8217;ve seen a few times now.  The ad copy is looking to increase fans to their page.  But it has a two-tiered response potential. The 1st option is to just click the &#8220;Become a Fan&#8221; and you will become a fan without even leaving whatever page you&#8217;re currently on. The [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://amitsavyon.com/wp-content/uploads/2010/04/Screen-shot-2010-04-04-at-5.53.36-PM.png"><img class="alignright size-full wp-image-404" title="Vegas" src="http://amitsavyon.com/wp-content/uploads/2010/04/Screen-shot-2010-04-04-at-5.53.36-PM.png" alt="" width="196" height="290" /></a>So here&#8217;s an interesting approach I&#8217;ve seen a few times now.  The ad copy is looking to increase fans to their page.  But it has a two-tiered response potential.</p>
<p>The 1st option is to just click the &#8220;Become a Fan&#8221; and you will become a fan without even leaving whatever page you&#8217;re currently on.</p>
<p>The 2nd option to to click through to the <a href="http://www.facebook.com/Vegas" target="_blank">Vegas.com Facebook Page</a> where you&#8217;re shown a bunch of custom created ads promoting various Las Vegas offers.</p>
<p>I&#8217;ve pasted a screenshot of that landing page here so you can get the idea, but it&#8217;s an interesting approach.  A lot of Facebook pages are pretty generic.  That&#8217;s kinda the point of Facebook, and I think this approach lets you stand out a bit in your offer to new visitors.</p>
<p style="text-align: center;"><img class="size-full wp-image-405 aligncenter" title="Screen shot 2010-04-04 at 5.58.57 PM" src="http://amitsavyon.com/wp-content/uploads/2010/04/Screen-shot-2010-04-04-at-5.58.57-PM.png" alt="" width="522" height="417" /></p>
]]></content:encoded>
			<wfw:commentRss>http://amitsavyon.com/facebook/vegas-com-interesting-facebook-ad-approach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friend-Of-A-Friend Facebook Ads?</title>
		<link>http://amitsavyon.com/facebook/friend-of-a-friend-facebook-ads/</link>
		<comments>http://amitsavyon.com/facebook/friend-of-a-friend-facebook-ads/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 21:43:08 +0000</pubDate>
		<dc:creator>Amit Savyon</dc:creator>
				<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://amitsavyon.com/?p=400</guid>
		<description><![CDATA[Now THIS is an interesting approach.  One of Facebooks targeting options is called &#8220;Friends Of Connections&#8221; which essentially means that your ads will be shown to all of the people who are friends with your friends. So this ad below really caught my eye, because it tells me that one of my friends is already [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-401    alignleft" title="Karina Anillo RE/MAX Gold Coast Realty" src="http://amitsavyon.com/wp-content/uploads/2010/04/Screen-shot-2010-04-04-at-5.44.00-PM.png" alt="" width="202" height="384" />Now THIS is an interesting approach.  One of Facebooks targeting options is called &#8220;Friends Of Connections&#8221; which essentially means that your ads will be shown to all of the people who are friends with your friends.</p>
<p>So this ad below really caught my eye, because it tells me that one of my friends is already a fan.  Very cool approach, an amazing way to build trust into your ads.</p>
<p>This is definitely a vote for using ads to drive people to your Facebook page, rather than to your website.</p>
]]></content:encoded>
			<wfw:commentRss>http://amitsavyon.com/facebook/friend-of-a-friend-facebook-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cordarounds Facebook Ad</title>
		<link>http://amitsavyon.com/facebook/cordarounds-facebook-ad/</link>
		<comments>http://amitsavyon.com/facebook/cordarounds-facebook-ad/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 17:13:05 +0000</pubDate>
		<dc:creator>Amit Savyon</dc:creator>
				<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://amitsavyon.com/?p=5</guid>
		<description><![CDATA[So, I&#8217;m looking at the Facebook Adboard, which has a bunch of ads that I assume are still targeted to me in some specific or broad sense.  I can tell that some are REALLY general, and some more specific. One ad that got my attention is this &#8220;Geisha In Your Pants?&#8221; from Cordarounds.com.  I had [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;m looking at the <a href="http://www.facebook.com/ads/adboard/" target="_blank">Facebook Adboard</a>, which has a bunch of ads that I assume are still targeted to me in some specific or broad sense.  I can tell that some are REALLY general, and some more specific.</p>
<p>One ad that got my attention is this &#8220;Geisha In Your Pants?&#8221;<img class="size-full wp-image-396 alignright" title="Cordarounds Geisha In Your Pants Facebook Ad" src="http://amitsavyon.com/wp-content/uploads/2010/04/Screen-shot-2010-04-04-at-5.02.44-PM.png" alt="" width="191" height="285" /> from Cordarounds.com.  I had no idea what this cordarounds company is, but their site looks great.  Really into their stuff.  I especially like their &#8220;pants for biking&#8221; category.</p>
<p>As my current &#8220;big question&#8221; has to do with whether or not to send Facebook ads directly to your own website, or to your Facebook page, I wonder how this ad does for them.</p>
<p>But I can talk about my own personal experience.  The ad got me curious.  I clicked the link to see more.  Initial site impression is one of trust.  Initial product impression is &#8220;cool, I want a pair.&#8221;  But then I clicked away to leave.   Am I going to remember their name?</p>
<p>What if they create an incentive for me to &#8220;become a fan&#8221; of them by giving away one pair of pants per week.  One pair of pants around $100.  It&#8217;s just a question of numbers, really.  How many new fans would you be happy to receive for $100/week?</p>
<p>If I were working on this campaign, I&#8217;d be curious about two different approaches.  While I&#8217;ve heard that it&#8217;s good to send people to a Facebook page, had I been sent directly to a Facebook page I wouldn&#8217;t have been able to be immediately impressed by their site design.  So what if their homepage had a big blazing &#8220;welcome Facebook people&#8221; and then stated the offer loud and clear.  This would be using their own domain name as a landing page to increase response.</p>
<p>Whichever of those methods works best, I know that the &#8220;tried and true&#8221; method of building relationship first, and customer second, is only going to become more and more of the de-facto method as interaction and &#8220;friendship&#8221; becomes easier and easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://amitsavyon.com/facebook/cordarounds-facebook-ad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting Ad &#8211; Targeted To Cornell Alum</title>
		<link>http://amitsavyon.com/facebook/interesting-ad-targeted-to-cornell-alum/</link>
		<comments>http://amitsavyon.com/facebook/interesting-ad-targeted-to-cornell-alum/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 20:31:54 +0000</pubDate>
		<dc:creator>Amit Savyon</dc:creator>
				<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://amitsavyon.com/?p=384</guid>
		<description><![CDATA[The image to the left of what I&#8217;m writing is a screen shot of an ad that was shown to me while browsing Facebook.  It&#8217;s an interesting example of targeting ads based on known demographic. This is one of the immediately-alluring themes of Facebook ads, the ability to target people based on certain aspects of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-389  alignright" title="Cornell Facebook Ad" src="http://amitsavyon.com/wp-content/uploads/2010/04/Screen-shot-2010-04-04-at-4.44.13-PM.png" alt="" width="202" height="306" />The image to the left of what I&#8217;m writing is a screen shot of an ad that was shown to me while browsing Facebook.  It&#8217;s an interesting example of targeting ads based on known demographic.</p>
<p>This is one of the immediately-alluring themes of Facebook ads, the ability to target people based on certain aspects of their profile.</p>
<p>So the headline of &#8220;For Cornell Alums Only&#8221; is obviously not something I&#8217;m accustomed to seeing online, so it immediately grabs my attention.  My opinion of the offer in the ad is that it&#8217;s too limiting, speaking only to people who are consciously aware that they &#8220;chose the wrong major&#8221;.</p>
<p>I think that if this ad focused more on the 25% discount for Cornell Alums, and stressed the wide-range of &#8220;continuing education&#8221; available, they&#8217;d have a wider audience.  But that&#8217;s my immediate marketing opinion.  This campaign could be wildly successful for them.  Only the data tells the real story.</p>
<p>So I clicked on the ad, and it brought me to a page on <a href="http://www.ecornell.com/l-cornell-alum?of=Facebook_alumni" target="_blank">ecornell.com&#8217;s site</a>.  One technique I&#8217;ve heard about lately is that some people say it&#8217;s more effective to have ads that point to your own Facebook page, instead of going outside of Facebook.</p>
<p>I get the sense that the guiding principle of success on Facebook is that it&#8217;s a trusted environment.  The more you can stay within the bounds of implicit trust, the more successful you&#8217;ll be.   So as long as the focus is on <em>trust</em>, we can acknowledge that it might be possible to send people to another site&#8230;just make sure the level of safety and transparency is equal to that of a Facebook page.</p>
]]></content:encoded>
			<wfw:commentRss>http://amitsavyon.com/facebook/interesting-ad-targeted-to-cornell-alum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

