<?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>Onetomarketconversion optimization &#187;</title>
	<atom:link href="http://www.onetomarket.com/tag/conversion-optimization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onetomarket.com</link>
	<description>Keeps you ahead</description>
	<lastBuildDate>Mon, 05 Jul 2010 12:59:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>301 Redirects: an overview</title>
		<link>http://www.onetomarket.com/knowhow/301-redirects.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.onetomarket.com/knowhow/301-redirects.html#comments</comments>
		<pubDate>Wed, 27 Aug 2008 18:31:41 +0000</pubDate>
		<dc:creator>Joost Brok</dc:creator>
				<category><![CDATA[knowledge base]]></category>
		<category><![CDATA[404 not found error]]></category>
		<category><![CDATA[conversion optimization]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[meta tag]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[urls]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://otm.22ns.nl/?p=344</guid>
		<description><![CDATA[a Web site must be improved continuously! But what if you want to get rid of the old pages without being concerned about people who stream old links to the old pages and then land on a '404 not found 'error? <p><a href="http://www.onetomarket.com/knowhow/301-redirects.html">301 Redirects: an overview</a> is a post from: <a href="http://www.onetomarket.com">Onetomarket</a></p>
]]></description>
			<content:encoded><![CDATA[<p>This article is based on the excellent overview of Steven Hargrove.</p>
<p>Each website is &#8211; to a greater or lesser extent &#8211; updated, changed and there are even entire pages or domains removed.<br />
Now that your website has been renovated completely. The file names are changed (for example index.html to index.php), etc.<br />
Of course this is fantastic: a Web site must be improved continuously! But what if you want to get rid of the old pages without being concerned about people who stream old links to the old pages and then land on a &#8216;404 not found &#8216;error? That&#8217;s not all, search engines like Google and Yahoo and MSN may have the old urls in their index and send visitors to the now deleted pages &#8230;</p>
<h3>The 301 redirect</h3>
<p>The best way to redirect those pages is to redirect with the so-called &#8216;301 &#8216;. What does this 301 redirect do, The redirect automatically forwards to a new page when it is called. This makes the 301 redirect the best, not only because it automatically forwards (which the &#8216;302 redirect also does), but it also does it safely, without that you have to fear for penalties from the search engines.<br />
Specifically spoken the 301 redirect tells the browser or search engine that the page is moved and sends the client (browser or search engine) automatically to the new address. It tells them, in spoken word: &#8216;Hey, this page was moved here and this is the new address! &#8220;.<br />
For you as the reader, the technique will be far more important, so we go further with the technique now.</p>
<p>There are several ways to use a 301 redirect: PHP, ASP, ASP.NET, JSP (JAVA), IIS, ColdFusion, CGI/PERL and finally with Htaccess. The most powerful technique is to use the so-called Apache mod_rewrite module in httpd.conf or .htaccess.</p>
<h3>Redirect with HTML or Javascript</h3>
<p>You want to know how you can use HTML or Javascript to redirect?! Very simple: Don’t!<br />
In the past, the so-called &#8220;meta-tag refresh redirection method is often abused with the aim to spamming. The result is that the use of it is penalized by the search engines. So don’t use it.</p>
<h3>301 redirect with .htaccess</h3>
<blockquote><p>The big advantage of using .htaccess is the fact that redirects can be regulated on a meta-level. Unlike with the mentioned programming languages  .htaccess can  redirect an entire directory.<br />
It works as follows:<br />
1.	Create a file named &#8220;.htaccess&#8221; (note the dot in the beginning!) and place it in the root of the website;<br />
2.	Open the .htaccess file in a code-editor and add the following lines to the .htaccess file:<br />
<code>Redirect 301 /old/old.html http://www.yoursite.com/new.html </code><br />
Please note: the first part of the statement concerns the path of the old files FROM the top level of the site (So without the &#8216;http://www&#8217;). Also note that there is a space between these elements:<br />
redirect 301 (The instruction that the page has been moved permanently)<br />
/old/old.html (The old relative path en name)<br />
http://www.you.com/new.html (new complete path and name)<br />
Also notice that it is not required for pages to redirect to a new domain name. This can be done within a domain too!</p></blockquote>
<h3>301 redirect with Mod_Rewrite</h3>
<p>There is much more possible within the world of redirecting with mod_rewrite, a module of the Apache Web server.<br />
This is an incredibly powerful module where regular expressions are used, for example, to flare dynamically redirects. I show an useful example below.<br />
When someone links to your site, they don’t always exactly use the way you prefer.<br />
If someone links to http://www.yoursite.com and someone else links to http://yoursite.com, then Google will use a separate page rank for each url.</p>
<p>Yes, that&#8217;s clumsy, but it’s a fact. You can customize it with the code below.<br />
Incidentally, those who use sitemaps in Google webmaster central, can indicate under the &#8220;preferred domain&#8221; submenu, whether they prefer Google to index the www-variant or the www-free version of their Web site.<br />
<code>RewriteEngine On<br />
rewritecond %{http_host} ^yoursite.com<br />
rewriteRule ^(.*) http://www.yoursite.com/$1 [R=301,L]</code></p>
<h3>301 redirect with IIS</h3>
<p>1.	Use the right mouse button in the Internet Services Manager to choose which folder should be redirected;<br />
2.	select the radio button that says &#8220;a redirection to a URL &#8216;;<br />
3.	fill in the page where to will be directed;<br />
4.	Check &#8220;The exact URL entered above&#8221; and &#8220;A permanent redirection for this resource&#8221;;<br />
5.	Click on &#8216;Apply&#8217;.</p>
<h3>301 redirect with Cold Fusion</h3>
<p>For most server-side scripting and programming languages is the use of 301-redirect quite simple.</p>
<p>In Cold Fusion it works as follows:</p>
<h3><code><br />
</code></h3>
<h3>301 redirect with PHP</h3>
<p>Use the following code:<br />
<code>&lt;?php<br />
header( "Status: 301 Moved Permanently" );<br />
header( "Location: http://www.yoursite.com/" );<br />
exit(0); // this is optional, but is recommended. This will help prevent unnecessary output?&gt;<br />
ps: The Microsoft IIS server crashes if you use the following (more common) used line:<br />
header( "HTTP/1.1 301 Moved Permanently" ); ?&gt;<br />
</code></p>
<p><code><br />
</code></p>
<h3><code> </code>301 redirect with ASP</h3>
<p><code> </code>Use the following code:<code><br />
&lt; %@ Language=VBScript %&gt;<br />
&lt; %<br />
Response.Status="301 Moved Permanently"<br />
Response.AddHeader "Location", "http://www.yoursite.com /"<br />
%&gt;<br />
</code></p>
<h3><code> </code>301 redirect with ASP.NET</h3>
<p><code> Use the following code:<br />
<script type="text/javascript"><!--
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.yoursite.com /");
}
// --></script>&gt; </code></p>
<h3>301 redirect with JSP / JAVA</h3>
<p>Use the following code:<br />
<code>&lt; %<br />
response.setStatus(301);<br />
response.setHeader( "Location", "http://www.yoursite.com /" );<br />
response.setHeader( "Connection", "close" );<br />
%&gt;<br />
301 redirect with CGI / PERL<br />
Use the following code:<br />
$q = new CGI;<br />
print $q-&gt;redirect(" http://www.yoursite.com / ");<br />
301 redirect with Ruby / Ruby on Rails<br />
Use the following code:<br />
def old_action<br />
headers["Status"] = "301 Moved Permanently"<br />
redirect_to "http://www.yoursite.com/"<br />
end </code></p>
<p><strong>Disclaimer</strong>: we have used these techniques in practice and found out that the operation is quit satisfying. But there are  567897653  ways in which it can go wrong. Therefore the use of these techniques is at your own risk!</p>
<p><a href="http://www.onetomarket.com/knowhow/301-redirects.html">301 Redirects: an overview</a> is a post from: <a href="http://www.onetomarket.com">Onetomarket</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.onetomarket.com/knowhow/301-redirects.html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web Analytics</title>
		<link>http://www.onetomarket.com/services/analyze-and-optimize/web-analytics/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.onetomarket.com/services/analyze-and-optimize/web-analytics/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 20:23:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[conversion optimization]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[Internet marketing]]></category>
		<category><![CDATA[KPI]]></category>
		<category><![CDATA[newsletter]]></category>
		<category><![CDATA[objectives]]></category>
		<category><![CDATA[scope]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tactics]]></category>

		<guid isPermaLink="false">http://otm.12ns.nl/?page_id=166</guid>
		<description><![CDATA[KPIs give you an indication of your progress. They can be simply described as: &#8220;the most important metrics from my web analytics tool&#8221;. They are the metrics that have a direct impact on your bottom line.
Web analytics provides the means to measure, analyze and optimize these metrics.
This process is very important, because KPIs are the [...]<p><a href="http://www.onetomarket.com/services/analyze-and-optimize/web-analytics/">Web Analytics</a> is a post from: <a href="http://www.onetomarket.com">Onetomarket</a></p>
]]></description>
			<content:encoded><![CDATA[<p>KPIs give you an indication of your progress. They can be simply described as: &#8220;the most important metrics from my web analytics tool&#8221;. They are the metrics that have a direct impact on your bottom line.</p>
<p>Web analytics provides the means to measure, analyze and optimize these metrics.</p>
<p>This process is very important, because KPIs are the absolutely essential metrics your web analytics tool should be able to report. Determining them is a great help when it comes to choosing a vendor. Once the tool is chosen, the next step is a correct implementation to ensure quality data and correct tagging of all the pages and campaigns. At Onetomarket, we work with different tools every day. We can help you both with the choice and implementation.</p>
<p>Key Performance Indicators guide your use of your analytics tool where you can start segmenting the data by campaigns, content and visitors. How do people from PPC campaigns behave on the site versus Organic visitors? Where do people break off their purchase process? Which channel is best to achieve a particular KPI and goal?</p>
<p>Find out which campaigns really contribute to the performance of your online marketing strategy. How effective are they? What works, and what doesn&#8217;t? Web analytics is not about measuring traffic, but about generating true value by measuring KPIs and optimizing for business objectives.</p>
<h3>Key Takeaways</h3>
<ul>
<li>KPIs give you an indication of your progress.</li>
<li>Web analytics provides the means to measure, analyze and optimize metrics.</li>
<li>Find out which campaigns really contribute to the performance of your online marketing strategy.</li>
</ul>
<h3>So, how can we help you?</h3>
<p>Maybe this sounds familiar to you, but if it does not &#8211; you are not alone! According to recent research by E-consultancy and Lynchpin &#8220;less than 18% of organizations have an internal strategy that ties data collection and analysis to business objectives.&#8221; Do you need to get Analytics on the right track, or are you just getting started and do you want to avoid all the pitfalls? We can help you! We do vendor selection, goals and KPI formulation, implementation, training and conversion optimization.</p>
<p>To get more information about web analytics and our services fill out the form below, or sign up to our newsletter!</p>
<p><a href="http://www.onetomarket.com/services/analyze-and-optimize/web-analytics/">Web Analytics</a> is a post from: <a href="http://www.onetomarket.com">Onetomarket</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.onetomarket.com/services/analyze-and-optimize/web-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conversion Optimization</title>
		<link>http://www.onetomarket.com/services/analyze-and-optimize/conversion-optimization/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.onetomarket.com/services/analyze-and-optimize/conversion-optimization/#comments</comments>
		<pubDate>Thu, 15 May 2008 14:16:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[combinations]]></category>
		<category><![CDATA[conversion optimization]]></category>
		<category><![CDATA[conversion rate]]></category>
		<category><![CDATA[conversion tools]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[optimization tools]]></category>
		<category><![CDATA[rate conversion]]></category>
		<category><![CDATA[sales success]]></category>
		<category><![CDATA[webshops]]></category>
		<category><![CDATA[website optimization]]></category>

		<guid isPermaLink="false">http://otmsite/?page_id=52</guid>
		<description><![CDATA[A/B Testing
With A/B-testing you randomly show users one of the two landing pages with various combinations of website elements. With conversion optimization tools like Google’s Website Optimizer we measure and compare the conversion rates of each landing page. Of course, when one of the two landing page converts statistically better, the best converting landing page [...]<p><a href="http://www.onetomarket.com/services/analyze-and-optimize/conversion-optimization/">Conversion Optimization</a> is a post from: <a href="http://www.onetomarket.com">Onetomarket</a></p>
]]></description>
			<content:encoded><![CDATA[<h3>A/B Testing</h3>
<p>With A/B-testing you randomly show users one of the two landing pages with various combinations of website elements. With conversion optimization tools like Google’s Website Optimizer we measure and compare the conversion rates of each landing page. Of course, when one of the two landing page converts statistically better, the best converting landing page will be shown in all cases.</p>
<h3>Multivariate testing</h3>
<p>Multivariate testing is a variant of A/B-testing. Instead of comparing the performance of two website components or landing pages you define more than two variables, which make it possible to test unlimited combinations. Multivariate-testing gives you information about how things like layout, font-type, buttons, copy and visual images can influence your sales success. All of the bigger webshops like Amazon are constantly testing new website elements and looking in what extent these increase their conversion rate. Multivariate testing gives insight into which elements contribute how much in terms of engagement. Engagement is one of the pillars of making sales online and can be achieved through gaining trust from the visitors.</p>
<h3>Key Takeaways</h3>
<ul>
<li>Conversion optimization can Increase the revenue per visitor</li>
<li> Measuring which combinations are leading to high engagement help you to increase profits</li>
<li> You can optimize your ROI with either A/B-testing or multivariate testing</li>
</ul>
<h3>So, how can we help you?</h3>
<p>As pointed out above sales generation is the backbone of your website. Meet our experts about boosting your online sales. Don’t rely on your common sense of what works and what doesn&#8217;t. Why use common sense when you have the data to prove what works? With A/B-testing and multivariate testing we can measure the level of engagement and maximize conversion rate.</p>
<p><a href="http://www.onetomarket.com/services/analyze-and-optimize/conversion-optimization/">Conversion Optimization</a> is a post from: <a href="http://www.onetomarket.com">Onetomarket</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.onetomarket.com/services/analyze-and-optimize/conversion-optimization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Marketing</title>
		<link>http://www.onetomarket.com/online-marketing/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
		<comments>http://www.onetomarket.com/online-marketing/#comments</comments>
		<pubDate>Thu, 15 May 2008 23:08:30 +0000</pubDate>
		<dc:creator>d.vanderbiezen</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[conversion optimization]]></category>
		<category><![CDATA[e-mail marketing]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[Internet marketing]]></category>
		<category><![CDATA[Link building]]></category>
		<category><![CDATA[newsletter]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>

		<guid isPermaLink="false">http://otmsite/?page_id=3</guid>
		<description><![CDATA[Internet marketing is the way you can boost your revenues and turn-over. There are several reasons why you should engage in channels through the internet. One of the most valued factors in internet marketing is the performance-based idea behind it. You can control the costs and decide which commission or maximum CPA you are able [...]<p><a href="http://www.onetomarket.com/online-marketing/">Internet Marketing</a> is a post from: <a href="http://www.onetomarket.com">Onetomarket</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Internet marketing is the way you can boost your revenues and turn-over. There are several reasons why you should engage in channels through the internet. One of the most valued factors in internet marketing is the performance-based idea behind it. You can control the costs and decide which commission or maximum CPA you are able to pay.</p>
<h3>Internet marketing strategies</h3>
<p>OK, I am convinced that internet marketing can grow my business further. I am ready to make some budget free for online marketing, but: </p>
<ul>
<li>Where should I start and which strategies can I use? </li>
<li>What is the best combination of channels to use? </li>
<li>I have a domain name, web hosting, and a great web site design but where are my sales?</li>
</ul>
<p>There are several ways to get in contact with your potential customers. You either can use a push or pull strategy to promote websites. The main advantage of internet is that you easily can use pull-strategies. With services like paid search and organic search – which fall under search engine marketing – you can promote your services or products when people need them or are looking for it. Be at the right time at the right spot with your advertisement! That is what search engine marketing is about. </p>
<p>Eventually your can make use of push strategies. This is where services like affiliate marketing and online advertising comes in. Build your brand online with banners.</p>
<h3>Affiliate marketing</h3>
<p>Affiliate marketing can help you getting more conversions. You decide which amount of money you are willing to pay for a conversion. Other websites function like henchmen (the affiliates) and are bringing you sales and conversions in return of a reward in the form of a commission. </p>
<h3>Search Engine Optimization</h3>
<p>Search engine submission is passé. Nowadays a search engine has an advanced algorithm to determine the most relevant search results for a query. Search engine optimization – also called SEO – can bring you lots of relatively cheap and high converting traffic via <a href="http://www.onetomarket.com/services/search/seo/organic-results/">organic results</a>. Getting traffic from search engines is one of the most profitable ways to promote your ecommerce website.</p>
<h3>Pay-per-click with Paid Search</h3>
<p>PPC or pay-per-click is one of the ways to advertize within search engines like Google. Track which ads work and which don’t. The flexibility of PPC is enormous. Onetomarket has several years of experience in managing advanced search engine marketing campaigns.  </p>
<h3>Web Analytics</h3>
<p>Analytics can be seen as website monitoring. Setting up web analytics includes thinking about your targets. Which metrics define your web site success? Through web analytics you can follow your targets and take action when needed. </p>
<h3>Online Advertising</h3>
<p>Want to build your brand online? Then online advertising is the way to go. Get your brand shown on CPM-basis by showing banners on the website you audience visits. Your branding campaign can contribute to your other online marketing campaigns.  </p>
<h3>Email Marketing</h3>
<p>When it comes to retention and life time value, e-mail marketing can bring you lots of sales and leads. The strength of email marketing is still underestimated. The way Amazon uses email to up sell products is a nice example. With Mailtomarket—our own email marketing tool—we can rapidly set up personalized email marketing campaigns that meet your requirements. </p>
<h3>Internet marketing advantages</h3>
<ul>
<li>From all marketing channels, online has the highest ROI</li>
<li>
The majority of internet users use the internet to see products before they buy </li>
<li>
With search engine marketing you can be visible when the customer is looking for your product or service</li>
<li>Easily target a specific audience against a acceptable amount of money</li>
<li>Online shopping is still growing rapidly</li>
<li>Send your (potential) customers messages on strategic times of the day with e-mail marketing to increase your sales.</li>
<li>
Continuously test different expressions at low cost to see what works best – unlike your direct mail in print.</li>
</ul>
<h3>Looking for an internet marketing consultant?</h3>
<p>Onetomarket has a great diversity of internet marketing consultants. All specialized in there own field. Our online marketing experts can advise you on a strategic level. Onetomarket doesn’t rely on shortcuts in optimizing your website for search engines. We know what works and what not. With great pleasure we are working for great clients like Hewlett-Packard, KLM Royal Dutch Airlines, FC Barcelona, American Express and Schiphol Airport. </p>
<blockquote><p>
<em>“Effective Search Engine Marketing is an sophisticated process. Onetomarket manages our campaigns successfully with a motivated team of experienced professionals.”<br />
<strong>— Gerard Brom, American Express</strong></em></p></blockquote>
<h3>How can we help you?</h3>
<p><strong>Internet marketing consultancy</strong>—If you know most of your customers are online but you don’t know how to engage them.<br />
<strong>Conversion Optimization</strong>—If you want your conversion ratio in order to increase your profitability.<br />
<strong>Search Engine Optimization</strong>—If you are a multinational and want to know how to deal with multiple websites in their own languages and how this can positively effect your brand visibility in search engines.<br />
<strong>Search Engine Advertising</strong>—If you want to be visible for your potential customers when they are looking for you.<br />
<strong>Link building</strong>—If you know links are important for search engine traffic but don’t know how to attract links to your website.<br />
<strong>Search Engine Marketing</strong>—If you want to achieve the best-possible online results in your market.<br />
<strong>Search Engine Advertising</strong>—If you want to target a niche for promoting your products in search engines with total control of your costs.<br />
<strong>Affiliate Marketing</strong>—If you want to generate more leads through your website with affiliate marketing.<br />
<strong>Web Analytics</strong>—If you want to monitor the metrics which define your e-business success.<br />
<strong>Search Engine Optimization</strong>—If you want more organic traffic from search engines for your relevant and high-converting keywords</p>
<h3>Get in contact with our experts!</h3>
<p>Are your ready to boost your sales? Get in contact with one of our experts in internet marketing.</p>
<p><a href="http://www.onetomarket.com/online-marketing/">Internet Marketing</a> is a post from: <a href="http://www.onetomarket.com">Onetomarket</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.onetomarket.com/online-marketing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
