<?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>SEO News and SEO Tips from SEO Blog Expert &#187; SEO News/Tips</title>
	<atom:link href="http://blog.theexpertseo.com/category/seo-newstips/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.theexpertseo.com</link>
	<description>free seo, inexpensive seo, information seo, search engine optimization seo, seo, seo advertising, seo blog, seo expert, seo forum, seo news, seo optimization, seo positioning, seo promotion, seo ranking, seo services, seo tip</description>
	<lastBuildDate>Wed, 11 Jan 2012 14:42:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>What is the .htaccess File, and What Can I Do With It?</title>
		<link>http://blog.theexpertseo.com/what-is-the-htaccess-file-and-what-can-i-do-with-it/</link>
		<comments>http://blog.theexpertseo.com/what-is-the-htaccess-file-and-what-can-i-do-with-it/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 16:31:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[What is the .htaccess]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=199</guid>
		<description><![CDATA[You may have been working on a website, or reading an article about web development, and heard about the .htaccess file, but wondered what it was, or what, if anything, you can do with it. This tutorial will tell you the basics about .htaccess, and show you a few ways you can use it on [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You may have been working on a website, or reading an article about web development, and heard about the .htaccess file, but wondered what it was, or what, if anything, you can do with it. This tutorial will tell you the basics about .htaccess, and show you a few ways you can use it on your website.</p>
<p style="text-align: justify;">Before we go any farther, let&#8217;s explain what the .htaccess file is. htaccess is short for Hypertext Access, and is a configuration file used by Apache-based web servers that controls the directory that it &#8220;lives&#8221; in&#8211;as well as all the subdirectories underneath that directory.</p>
<p style="text-align: justify;">Many times, if you have installed a Content Management System (CMS), such as Drupal, Joomla or WordPress, you likely encountered the .htaccess file. You may not have even had to edit it, but it was among the files that you uploaded to your web server. BTW, that&#8217;s its name, .htaccess&#8211;it begins with a period, and ends with &#8220;htaccess.&#8221; If you edit it, you need to make sure that it stays that way, and doesn&#8217;t end up with a .txt or .html extension.</p>
<p style="text-align: justify;">Also note that some web hosts do not allow you to edit the .htaccess file&#8211;but even on most of those hosts, you can create your own .htaccess file and upload it to specific directories, and as discussed above, it will control those directories and subdirectories below it.</p>
<p style="text-align: justify;">Some of the features of the .htaccess file include the ability to password protect folders, ban users or allow users using IP addresses, stop directory listings, redirect users to another page or directory automatically, create and use custom error pages, change the way files with certain extensions are utilized, or even use a different file as the index file by specifying the file extension or specific file.</p>
<h2 style="text-align: justify;">Custom Error Pages for Better SEO</h2>
<p style="text-align: justify;">One use of the .htaccess file is to redirect users to a custom error page depending on the specific web server error they encounter. By using a custom error page, you can present them with a list of your site&#8217;s top articles, a sitemap with links to the various areas of your site, and it can include your site&#8217;s navigation system. It can also feature a FAQ, so folks who are looking for information on your site, but can&#8217;t find it, are able to narrow down the location of that information on your site without leaving, going back to the search engine, and more than likely not returning to your site.</p>
<p style="text-align: justify;">It&#8217;s not difficult to use the .htaccess file to redirect users to a custom error page&#8211;but to do it you&#8217;ll need to know the proper error code. The most common ones you&#8217;ll use are:</p>
<ul style="text-align: justify;">
<li>400 &#8211; Bad request</li>
<li>401 &#8211; Authorization Required</li>
<li>403 &#8211; Forbidden</li>
<li>404 &#8211; File Not Found</li>
<li>500 &#8211; Internal Server Error</li>
</ul>
<p style="text-align: justify;">To use .htaccess with these codes, first you&#8217;ll need to open up your favorite text editor, create a new document, and in that document, specify the error message that you&#8217;ll be redirecting like this:</p>
<pre style="text-align: justify;">ErrorDocument 404 /filenotfound.html
</pre>
<p style="text-align: justify;">If you wanted to redirect users for another error, such as 500, Internal Server Error, you would do it like this (and so on):</p>
<pre style="text-align: justify;">ErrorDocument 500 /servererror.html
</pre>
<p style="text-align: justify;">Then you&#8217;d just save the .htaccess file (remembering to check that it is saved just like that, without some additional extension), and upload it to your web host&#8217;s root directory (or whatever directory you are wanting to use it in).</p>
<h2 style="text-align: justify;">Using a Different File as the Index File</h2>
<p style="text-align: justify;">By adding another &#8220;command&#8221; to the .htaccess file, you can use a different file as the main index file that folks see when they come to your site. In other words, when folks visit www.yoursite.com, usually they are presented with www.yoursite.com/index.html or www.yoursite.com/index.php&#8211;but often you have created a special page that you want to use as your site&#8217;s main page&#8211;and it isn&#8217;t any of the traditional pages. Or you may want to take advantage of the latest version of PHP&#8230;there are many reasons for needing to use a different file as the index file. Here&#8217;s how you would do it, with each type of file being next in line, if the others are not in the directory.</p>
<pre style="text-align: justify;">DirectoryIndex index.php3 index.php pictures.pl index.html default.htm
</pre>
<p style="text-align: justify;">For instance, if there was no file named index.php3 in your directory, then the server would look for a file called index.php. If that file wasn&#8217;t present, it would look for one called pictures.pl, and so on. In our next article, we&#8217;ll look at other types of redirection, password protection and we&#8217;ll show you how to allow or deny users with specific IP addresses from accessing your site.</p>
<p style="text-align: justify;">By   <a href="http://www.htmlgoodies.com/feedback.php/http://www.htmlgoodies.com/beyond/webmaster/article.php/3899416">Scott Clark</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/what-is-the-htaccess-file-and-what-can-i-do-with-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Apologizes to Chinese Authors for Book Scanning</title>
		<link>http://blog.theexpertseo.com/google-apologizes-to-chinese-authors-for-book-scanning/</link>
		<comments>http://blog.theexpertseo.com/google-apologizes-to-chinese-authors-for-book-scanning/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 14:04:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Interent Marketing]]></category>
		<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[TopNews]]></category>
		<category><![CDATA[Book Scanning]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=184</guid>
		<description><![CDATA[Google has apologized to a Chinese authors&#8217; group over its scanning of books by local writers into an online search system, moving to defuse copyright concerns around the project in China. The Chinese Writers Association posted a copy of the Google statement on its Web site on Sunday. On the same day Erik Hartmann, an [...]]]></description>
			<content:encoded><![CDATA[<p>Google has apologized to a Chinese authors&#8217; group over its scanning of books by local writers into an online search system, moving to defuse copyright concerns around the project in China.</p>
<p>The Chinese Writers Association posted a copy of the Google statement on its Web site on Sunday. On the same day Erik Hartmann, an Asia-Pacific representative of Google Books, delivered the apology in a news program aired by China&#8217;s state broadcaster.</p>
<p>China is one of several countries, including the U.S. and France, where Google&#8217;s digital library program has faced legal challenges. The apology comes after the Chinese group demanded that Google compensate local authors whose works the U.S. search giant scanned without their approval.</p>
<p>Google is scanning hundreds of thousands of books, often without prior permission from their rights holders, so they can be searched and previewed on the Google Books service.</p>
<p>Google acknowledged in the statement that it had scanned books by Chinese writers and said the company would no longer do so without local authors&#8217; permission. It also said it hopes to reach a general agreement over resolving the tensions by March and to sign a final agreement in the second quarter.</p>
<p>&#8220;Due to different starting notions and different understandings of the copyright law systems in China and the U.S., our behavior has caused discontent among Chinese writers,&#8221; the statement said. &#8220;Our communication with Chinese authors has not been good enough. Google is willing to apologize to Chinese authors for this behavior.&#8221;</p>
<p>Google has held talks with a local copyright protection group over the book service. One Chinese author, Shanghai-based Mian Mian, has brought a copyright infringement lawsuit against Google for scanning her novel Acid Lover and showing portions of it online.</p>
<p>A Google spokeswoman said Google Books complies with U.S. and Chinese law and that the company only shows snippets of copyright books for which it does not have permission from rights holders. Authors and publishers can choose to exclude their works from the service, she said.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/google-apologizes-to-chinese-authors-for-book-scanning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Wants You to Be Able to Leave if You Want</title>
		<link>http://blog.theexpertseo.com/google-wants-you-to-be-able-to-leave-if-you-want/</link>
		<comments>http://blog.theexpertseo.com/google-wants-you-to-be-able-to-leave-if-you-want/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 15:58:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Interent Marketing]]></category>
		<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[TopNews]]></category>
		<category><![CDATA[data liberation front]]></category>
		<category><![CDATA[dataliberation.org]]></category>
		<category><![CDATA[google products]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=169</guid>
		<description><![CDATA[Data portability is an important issue for users and businesses alike. In this age of cloud computing, where so many web users have valuable data hosted by web services, we can sometimes find ourselves vulnerable to the will and occurrences of these services. Let&#8217;s say for example, Twitter is one of the key components to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Data portability is <strong>an important issue for users and businesses alike</strong>. In this age of cloud computing, where so many web users have valuable data hosted by web services, we can sometimes find ourselves vulnerable to the will and occurrences of these services. Let&#8217;s say for example, Twitter is one of the key components to your marketing strategy, and one of your main sources of traffic. When Twitter goes down, as it frequently does, this can present quite a problem. <span style="color: #ff0000;"><strong>Ever wished you could access your tweets when Twitter was down? </strong></span><strong></strong></p>
<p style="text-align: justify;">On the subject of Twitter, the company announced some changes to its terms of service late last week. They tried to emphasize that users &#8220;own their tweets.&#8221; But do users really own them if they cannot access them because Twitter is not working? What if you could export your Tweets into Facebook, or into MySpace? It&#8217;s not that one service is better than the other. It&#8217;s about simply having the freedom to take your data wherever you want.</p>
<p style="text-align: justify;">Google realizes the importance of this concept, which is why some members of the company&#8217;s team have gotten together and formed the Data Liberation Front, a group that is dedicated to making Google&#8217;s products easier to get data in and out of. The group has also launched a website at <a href="http://www.dataliberation.org/">DataLiberation.org</a>, where users of Google products can find information about how to import and export data.</p>
<p style="text-align: justify;">&#8220;Many web services make it difficult to leave their services &#8211; you have to pay them for exporting your data, or jump through all sorts of technical hoops &#8212; for example, exporting your photos one by one, versus all at once,&#8221; <a href="http://googlepublicpolicy.blogspot.com/2009/09/introducing-dataliberationorg-liberate.html">says Brian Fitzpatrick</a>, Data Liberation engineering manager. &#8220;We believe that users &#8211; not products &#8211; own their data, and should be able to quickly and easily take that data out of any product without a hassle. We&#8217;d rather have loyal users who use Google products because they&#8217;re innovative &#8211; not because they lock users in.&#8221;</p>
<p style="text-align: justify;"><a href="http://googlepublicpolicy.blogspot.com/2009/09/introducing-dataliberationorg-liberate.html"><img title="Data Liberation Front" src="http://images.ientrymail.com/webpronews/article_pics/data-liberation.jpg" alt="Data Liberation Front" /></a> The group&#8217;s mission statement goes:</p>
<p style="text-align: justify;"><em>Users own the data they store in any of Google&#8217;s products. Our team&#8217;s goal is to give users greater control by making it easier for them to move data in and out.</em></p>
<p style="text-align: justify;">&#8220;<span style="font-size: 100%;">This principle not only applies to individual users, but also to businesses, schools and other organizations that choose <a id="klfi" title="Google Apps" href="http://www.google.com/apps/intl/en/business/index.html#utm_campaign=data_liberation&amp;utm_source=en-na-us-entblog-data_liberation-09142009&amp;utm_medium=blog">Google Apps</a> to provide better tools at a fraction of the cost of traditional solutions,&#8221; says Fitzpatrick. &#8220;It should be easy to bring legacy data into the cloud, share data between Google Apps and other IT infrastructure, and get data out of the cloud if it ever makes sense to stop using our service.</span>&#8220;</p>
<p style="text-align: justify;">At DataLiberation.org, users can simply browse through Google&#8217;s list of products and see detailed instructions for each one about how to &#8220;escape&#8221; to or from any of them. This list includes: AdWords, Alerts, Analytics, App Engine, Apps for Businesses, Blogger, Bookmarks, Calendar, Chrome Boomarks, Contacts, Docs, Finance, Gmail, Health, iGoogle, Maps, Notebook, Orkut, Picasa, Reader, Voice, Web History, and YouTube.</p>
<p style="text-align: justify;">The company says it will be working on adding import/export features to more of its products like Google Sites, and Google Docs (batch-export) in the coming months.</p>
<p style="text-align: justify;">&#8220;We think open is better than closed &#8212; not because closed is inherently bad, but because when it&#8217;s easy for users to leave your product, there&#8217;s a sense of urgency to improve and innovate in order to keep your users,&#8221; says Fitzpatrick. &#8220;When your users are locked in, there&#8217;s a strong temptation to be complacent and focus less on making your product better.&#8221;</p>
<p style="text-align: justify;">Google&#8217;s certainly not the only company to offer data portability options, but it&#8217;s a very large one that has a huge impact on a lot of users and businesses. That&#8217;s why Google&#8217;s work in this area is so important. The company&#8217;s broad range of products that are used heavily on a daily basis emphasizes the importance of the issue on the web in general. Tired of Gmail going down? You can take your info elsewhere if you wish.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/google-wants-you-to-be-able-to-leave-if-you-want/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Reduces Restictions on Google Checkout</title>
		<link>http://blog.theexpertseo.com/google-reduces-restictions-on-google-checkout/</link>
		<comments>http://blog.theexpertseo.com/google-reduces-restictions-on-google-checkout/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 15:55:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Interent Marketing]]></category>
		<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[google base]]></category>
		<category><![CDATA[Google Checkout]]></category>
		<category><![CDATA[online payments]]></category>
		<category><![CDATA[Payments]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=167</guid>
		<description><![CDATA[Google has made a change to its content restrictions for Google Checkout. Google Checkout now allows the sale of real estate rentals, timeshares, and day sight-seeing tours. &#8220;Google Checkout sellers of real estate rentals, timeshares, and day sight-seeing tours must have a valid public business URL,&#8221; says Sammer Abdul of Google Checkout Operations. &#8220;The sellers [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Google has made a change to its content restrictions for Google Checkout. Google Checkout now allows the sale of real estate rentals, timeshares, and day sight-seeing tours.</p>
<p><img class="alignright" title="Google Checkout" src="http://images.ientrymail.com/webpronews/article_pics/google-checkout2.jpg" alt="" width="282" height="56" /></p>
<p style="text-align: justify;">&#8220;<a href="http://checkout.google.com/" target="_blank">Google Checkout</a> sellers of real estate rentals, timeshares, and day sight-seeing tours must have a valid public business URL,&#8221; says Sammer Abdul of Google Checkout Operations. &#8220;The sellers may, however, choose to use either Checkout buttons or Checkout invoices to process transactions for the above allowable services based on their business requirements.&#8221;</p>
<p style="text-align: justify;">The Google Checkout merchant help center provides a list of product categories (as well as examples), which are still considered unacceptable. Some of these are obvious (illegal goods), and some not so obvious (Travel packages and offers).<br />
The competition is heating up among payment services, with Facebook now widely considered a potential big-player, and possibly Apple too. By not offering real estate rentals, timeshares, etc. Google is missing out on a fair amount of business. This is likely the driving factor behind Google&#8217;s decision to allow these.<br />
On a semi-related note, Google recently announced it has made it easier to link Google Checkout with Google Base accounts. There&#8217;s a new page in the &#8220;settings&#8221; tab called &#8220;Checkout,&#8221; where you can add accounts to Checkout by entering a Checkout Merchant ID.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/google-reduces-restictions-on-google-checkout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contact to Google to Report about Google Search Result</title>
		<link>http://blog.theexpertseo.com/contact-to-google-to-report-about-google-search-result/</link>
		<comments>http://blog.theexpertseo.com/contact-to-google-to-report-about-google-search-result/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 07:42:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[TopNews]]></category>
		<category><![CDATA[Google search results]]></category>
		<category><![CDATA[report abuse to google]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=110</guid>
		<description><![CDATA[Help us maintain the quality of Google search results http://www.google.com/contact/spamreport.html]]></description>
			<content:encoded><![CDATA[<h2>Help us maintain the quality of Google search results</h2>
<div id="attachment_112" class="wp-caption alignnone" style="width: 310px"><a rel="attachment wp-att-112" href="http://blog.theexpertseo.com/contact-to-google-to-report-about-google-search-result/contact-to-google-regarding-google-search-result/"><img class="size-medium wp-image-112" title="contact-to-google-regarding-google-search-result" src="http://blog.theexpertseo.com/wp-content/uploads/2009/07/contact-to-google-regarding-google-search-result-300x225.jpg" alt="Send Report to Google about Search Result" width="300" height="225" /></a><p class="wp-caption-text">Send Report to Google about Search Result</p></div>
<p><a href="http://www.google.com/contact/spamreport.html" target="_blank">http://www.google.com/contact/spamreport.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/contact-to-google-to-report-about-google-search-result/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup a 301 Permanent Redirect</title>
		<link>http://blog.theexpertseo.com/how-to-setup-a-301-permanent-redirect/</link>
		<comments>http://blog.theexpertseo.com/how-to-setup-a-301-permanent-redirect/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 09:20:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[301 redirection]]></category>
		<category><![CDATA[301 redirects]]></category>
		<category><![CDATA[directory redirection]]></category>
		<category><![CDATA[On Page Redirects]]></category>
		<category><![CDATA[redirection]]></category>
		<category><![CDATA[single page redirection]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=108</guid>
		<description><![CDATA[How to setup a 301 Permanent Redirect In our previous post SEO Considerations When Redesigning a Website we touched on how to mitigate the ill effects of changing your website domain or file names by using 301 Permanent Redirects. Here we will give you instruction on how to set up this redirect on both Apache [...]]]></description>
			<content:encoded><![CDATA[<div class="blogbigtitle">How to setup a 301 Permanent Redirect</div>
<div>
<p>In our previous post SEO Considerations When Redesigning a Website we touched on how to mitigate the ill effects of changing your website domain or file names by using 301 Permanent Redirects. Here we will give you instruction on how to set up this redirect on both Apache and Microsoft IIS web servers.</p>
<p>The “301 Permanent Redirect” is the most efficient and search engine friendly method for redirecting websites. Situations include:</p>
<ul>
<li>To redirect an old domain name to a new domain name – normally in the case of re-branding</li>
<li>When you have several domain names pointing to one website but are only wishing to promote one domain name</li>
<li>When access to your website is possible via multiple URLs such as http://domain.com/ or http://www.domain.com. It is preferable to select one and 301 redirect the others to the one you have chosen. This is referred to as Canonicalisation.</li>
<li>Merging two websites together and want links to outdated URLs to be seamlessly redirected to the corresponding page on the new site.</li>
</ul>
<p>Here is Google’s webmaster guideline on 301 redirects: <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=93633" target="_blank">http://www.google.com/support/webmasters/bin/answer.py?answer=93633</a></p>
<p><strong><span style="font-size: x-small;">Apache Web Server</span></strong><br />
 <br />
The Linux Operating system most commonly uses Apache web server. There are a number of methods of redirect available:</p>
<p><strong><span style="text-decoration: underline;">.htaccess Method</span></strong></p>
<p>If you have sufficient access to the web server then the very best method of redirection is the creation and upload of an .htaccess file as this gives you the most flexibility and control:</p>
<blockquote><p><strong>Apache .htaccess Single Page Redirect</strong><br />
You will need to create a file named .htaccess (no extension), add the code below to the file using a text only editor and upload it to the root directory of your website:</p></blockquote>
<blockquote>
<blockquote><p>RewriteEngine on<br />
Redirect 301 /oldpage.html http://www.example.com/newpage.html</p></blockquote>
<p><strong>Apache .htaccess Canonical Redirect</strong><br />
Again you will need to create a file named .htaccess, add the code below to<br />
the file using a text only editor and upload it to the root directory of your website. The code below will redirect all visitors accessing http://domain.com to http://www.domain.com:</p>
<blockquote><p>RewriteEngine on<br />
rewritecond %{http_host} ^domain.com [nc]<br />
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]  </p></blockquote>
</blockquote>
<p><strong><span style="text-decoration: underline;">Control Panel Method</span></strong></p>
<p>If you have Administrator access to the cPanel then this is another method of redirection but you may find that you are limited with the types of redirects that you can do, for example the Plesk control panel does not allow for 301 redirects.</p>
<blockquote><p><strong>cPanel redirect<br />
</strong><br />
Log into your cPanel, and look for &#8220;Redirects&#8221; under Site Management<br />
Put in the current directory into the first box<br />
Put the new directory in the second box<br />
Choose the type (temporary or permanent) temporary=302 and permanent=301<br />
Click &#8220;Add&#8221; and you&#8217;re done</p></blockquote>
<p><strong><span style="text-decoration: underline;">On Page Redirects</span></strong></p>
<p>In instances where you are only wishing to redirect one or two files and perhaps don’t have the server correctly configured for an .htaccess file or where you do not have sufficient access to the web server such as in a shared hosting environment, you can use on-page redirects.</p>
<p>Read more info on both <a href="http://blog.theexpertseo.com/wp-admin/#onpageredirects">PHP and ASP redirects</a>.</p>
<p><strong><span style="font-size: x-small;">Microsoft IIS Web Server</span></strong></p>
<p>IIS supports the requirement for 301 redirection and all necessary changes can be made directly through the Control Panel. </p>
<p><strong><span style="text-decoration: underline;">Administrator Mode<br />
</span><br />
</strong>If you can log into the Windows 2000 (or higher) server and access the desktop, then this is the best method to carry out redirects in a Windows environment. The example below is based on the IIS 6.0 platform.</p>
<ul>
<li>
<div>Choose Start / Setting / Control panel / Administrative Tools / Internet Information Services (IIS) Manager</div>
</li>
<li>
<div>Click the cross that is next to the computer to drop down the list of the configured folders within IIS.</div>
</li>
<li>
<div>Next you need to drop down the web sites folder; this will display all the website that have been configured in IIS.</div>
</li>
<li>
<div>Locate the domain that you wish to setup the 301 redirect on. When you have located this domain right click on it and select properties.</div>
</li>
<li>
<div>On the tabbed menu above click home directory. Once you are in the home directory pay close attention, you do not want to mess with any other settings this could result in your website not being displayed.</div>
</li>
<li>
<div>Select ‘A redirection to a URL’</div>
</li>
<li>
<div>In the redirect website box: Enter the website address that you want the site to direct to. Once you have done this, your website will forward but it still has not been set correctly, you must click a permanent redirection to; by checking this button you are telling the server that you want the redirection to be permanent.</div>
</li>
</ul>
<p><strong><span style="text-decoration: underline;">On Page Redirects – <a href="http://blog.theexpertseo.com/wp-admin/#onpageredirects">See Below</a></span></strong></p>
<p><strong><span style="font-size: x-small;"><a title="onpageredirects" name="onpageredirects"></a>On Page Redirects – More Information</span></strong></p>
<p><strong>PHP Single Page Redirect</strong><br />
In order to redirect a static page to a new address simply enter the code below inside the index.php file. This code must be located in a script that is executed on the server before the page content starts:</p>
<blockquote><p><!--p<--><!--p<-->header(&#8220;HTTP/1.1 301 Moved Permanently&#8221;);<br />
header(&#8220;Location: http://www.newdomain.com/page.html&#8221;);<br />
exit();<br />
?&gt;</p></blockquote>
<p><strong>PHP Canonical Redirect<br />
</strong>The code below will redirect all visitors accessing http://domain.com to http://www.domain.com. This code must be located in a script that is executed in every page on the server before the page content starts:</p>
<blockquote><p><!--p<--><!--p<-->if (substr($_SERVER['HTTP_HOST'],0,3) != &#8216;www&#8217;) {<br />
header(&#8216;HTTP/1.1 301 Moved Permanently&#8217;);<br />
header(&#8216;Location: http://www.&#8217;.$_SERVER['HTTP_HOST']<br />
.$_SERVER['REQUEST_URI']);<br />
}<br />
?&gt;</p></blockquote>
<p><strong>ASP Single Page Redirect<br />
</strong>This redirect method is used with the Active Server Pages platform. This code must be located in a script that is executed on the server before the page content starts:</p>
<blockquote><p>&lt;%<br />
Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader=&#8217;Location&#8217;,'http://www.new-url.com/&#8217;<br />
%&gt;</p></blockquote>
<p><!--r>Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader=&#8217;Location&#8217;,'http://www.new-url.com/&#8217;<br--></p>
<p><!--r>Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader=&#8217;Location&#8217;,'http://www.new-url.com/&#8217;<br--></p>
<blockquote><p><!--r>Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader=&#8217;Location&#8217;,'http://www.new-url.com/&#8217;<br--></p></blockquote>
<blockquote><p><!--r>Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader=&#8217;Location&#8217;,'http://www.new-url.com/&#8217;<br--></p></blockquote>
<p><strong>ASP Canonical Redirect</strong><br />
The code below will redirect all visitors accessing http://domain.com to http://www.domain.com. This code must be located in a script that is executed in every page on the server before the page content starts:</p>
<blockquote><p>&lt;%<br />
If InStr(Request.ServerVariables(&#8220;SERVER_NAME&#8221;),&#8221;www&#8221;) = 0 Then<br />
Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader &#8220;Location&#8221;,&#8221;<a href="http://www/">http://www</a>.&#8221;<br />
&amp; Request.ServerVariables(&#8220;HTTP_HOST&#8221;)<br />
&amp; Request.ServerVariables(&#8220;SCRIPT_NAME&#8221;)<br />
End if<br />
%&gt;</p></blockquote>
<p><!--r>If InStr(Request.ServerVariables(&#8220;SERVER_NAME&#8221;),&#8221;www&#8221;) = 0 Then<br />
Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader &#8220;Location&#8221;,&#8221;http://www.&#8221;<br />
&#038; Request.ServerVariables(&#8220;HTTP_HOST&#8221;)<br />
&#038; Request.ServerVariables(&#8220;SCRIPT_NAME&#8221;)<br />
End if<br--></p>
<p><!--r>If InStr(Request.ServerVariables(&#8220;SERVER_NAME&#8221;),&#8221;www&#8221;) = 0 Then<br />
Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader &#8216;Location&#8217;,&#8217;<a href="http://www/">http://www</a>.&#8217;<br />
&#038; Request.ServerVariables(&#8220;HTTP_HOST&#8221;)<br />
&#038; Request.ServerVariables(&#8220;SCRIPT_NAME&#8221;)<br />
End if<br--></p>
<blockquote><p><!--r>If InStr(Request.ServerVariables(&#8220;SERVER_NAME&#8221;),&#8221;www&#8221;) = 0 Then<br />
Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader &#8220;Location&#8221;,&#8221;http://www.&#8221;<br />
&#038; Request.ServerVariables(&#8220;HTTP_HOST&#8221;)<br />
&#038; Request.ServerVariables(&#8220;SCRIPT_NAME&#8221;)<br />
End if<br--></p></blockquote>
<blockquote><p><!--r>If InStr(Request.ServerVariables(&#8220;SERVER_NAME&#8221;),&#8221;www&#8221;) = 0 Then<br />
Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader &#8220;Location&#8221;,&#8221;http://www.&#8221;<br />
&#038; Request.ServerVariables(&#8220;HTTP_HOST&#8221;)<br />
&#038; Request.ServerVariables(&#8220;SCRIPT_NAME&#8221;)<br />
End if<br--></p></blockquote>
<p>These are some of the methods available to ensure you preserve your Internet footprint when updating your site content.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/how-to-setup-a-301-permanent-redirect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is GAIQ test?</title>
		<link>http://blog.theexpertseo.com/what-is-gaiq-test/</link>
		<comments>http://blog.theexpertseo.com/what-is-gaiq-test/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 10:56:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[GAIQ test]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=77</guid>
		<description><![CDATA[Become qualified in Google Analytics. The Google Analytics Individual Qualification (IQ) is a proof of proficiency in Google Analytics. After passing the Google Analytics IQ test, you&#8217;ll be effective at leveraging Google Analytics within your organization and helping others to do the same. An in-depth, step-by-step curriculum is provided free of charge from Google to [...]]]></description>
			<content:encoded><![CDATA[<p>Become qualified in Google Analytics.<br />
The Google Analytics Individual Qualification (IQ) is a proof of proficiency in Google Analytics. After passing the Google Analytics IQ test, you&#8217;ll be effective at leveraging Google Analytics within your organization and helping others to do the same. An in-depth, step-by-step curriculum is provided free of charge from Google to help you prepare for the test.<br />
visit here &#8211; http://google.starttest.com/</p>
<h2 class="page_heading">Google Analytics IQ Lessons</h2>
<p class="cu_learnintro">Follow these lessons to prepare for the <a href="http://google.starttest.com/">Google Analytics Individual Qualification (IQ) test</a> or to simply become a more knowledgeable Google Analytics user. The presentations move quickly; use the Pause and Back buttons to make sure that you don&#8217;t miss anything. You can click the Notes tab in the presentation to read what is being said. Access to a Google Analytics account is strongly recommended so that you can experiment and apply what you learn.</p>
<h3 class="subheading">First Steps</h3>
<ul class="cl_steps">
<li><span class="cu_learning">Introduction to Google Analytics:</span> <a href="javascript:openLearnBox('intro')"></a> <a href="http://services.google.com/analytics/breeze/en/ga_intro/index.html" target="_blank">Watch presentation</a></li>
<div id="intro" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Introduction (6:29 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>what Google Analytics can do for your business or website</li>
<li>how Google Analytics works</li>
<li>how often your data is updated and how Google stores it</li>
<li>how to set your Data Sharing preferences</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/ga_intro/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Interface Navigation:</span> <a href="javascript:openLearnBox('interface_navigation')"></a><a href="http://services.google.com/analytics/breeze/en/interface_navigation/index.html" target="_blank">Watch presentation</a></li>
<div id="interface_navigation" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Interface Navigation (7:39 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to set date ranges and comparison date ranges</li>
<li>how to graph data by day, week, and month</li>
<li>how to compare multiple metrics on graphs</li>
<li>about the user interface options for exporting data</li>
<li>how to email reports to others</li>
<li>how to navigate between report detail levels</li>
<li>how to use the report views</li>
<li>how to quickly segment and sort data in reports</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/interface_navigation/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Installing the Google Analytics Tracking Code:</span> <a href="javascript:openLearnBox('instal_code')"></a> <a href="http://services.google.com/analytics/breeze/en/installing_ga_code/index.html" target="_blank">Watch presentation</a></li>
<div id="instal_code" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Installing the Google Analytics Tracking Code (7:37 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to create a new account</li>
<li>where to place the Google Analytics Tracking Code</li>
<li>about website setups that require customization</li>
<li>how to verify installation</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/installing_ga_code/index.html" target="_blank"><br />
</a></div>
</ul>
<h3 class="subheading">Interpreting Reports</h3>
<ul class="cl_steps">
<li><span class="cu_learning">Guidelines:</span> <a href="javascript:openLearnBox('guidelines')"></a> <a href="http://services.google.com/analytics/breeze/en/interpreting_reports_guidelines/index.html" target="_blank">Watch presentation</a></li>
<div id="guidelines" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Guidelines (4:25 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>best practices for analyzing data</li>
<li>how to analyze data trends</li>
<li>how to use the data visualizations in Google Analytics</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/interpreting_reports_guidelines/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Pageviews, Visits, and Visitors:</span> <a href="http://services.google.com/analytics/breeze/en/interpreting_reports_visits/index.html" target="_blank">Watch presentation</a></li>
<div id="pageviews_visitors" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Pageviews, Visits, and Visitors (3:27 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>where to find Pageviews, Visits, and Visitors metrics</li>
<li>how Pageviews, Visits, and Visitors are calculated</li>
<li>the difference between Pageviews and Unique Pageviews</li>
<li>the difference between Absolute Unique Visitors and New vs. Returning Visitors</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/interpreting_reports_visits/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Time Metrics:</span> <a href="javascript:openLearnBox('time_metrics')"></a><a href="http://services.google.com/analytics/breeze/en/interpreting_reports_time/index.html" target="_blank">Watch presentation</a></li>
<div id="time_metrics" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Time Metrics (2:11 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how Time on Page and Time on Site are calculated</li>
<li>how Avg. Time on Page and Avg. Time on Site are calculated</li>
<li>about the Length of Visit report</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/interpreting_reports_time/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Traffic Sources:</span> <a href="javascript:openLearnBox('traffic_sources')"></a><a href="http://services.google.com/analytics/breeze/en/interpreting_reports_trafficsources/index.html" target="_blank">Watch presentation</a></li>
<div id="traffic_sources" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Traffic Sources (6:09 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>about the different kinds of traffic sources</li>
<li>how to identify quality traffic</li>
<li>how to identify revenue and conversion drivers</li>
<li>what kinds of information to look for in keyword reports</li>
<li>how campaign attribution works in Google Analytics</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/interpreting_reports_trafficsources/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Content Reports:</span> <a href="javascript:openLearnBox('content_reports')"></a> <a href="http://services.google.com/analytics/breeze/en/interpreting_reports_content/index.html" target="_blank">Watch presentation</a></li>
<div id="content_reports" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Content Reports (3:53 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to use and interpret the Top Content, Content by Title, and Content Drilldown reports</li>
<li>how to use the Top Landing Pages report</li>
<li>how to use and interpret the Navigation Summary report</li>
<li>how to use and interpret the Entrance Paths report</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/interpreting_reports_trafficsources/index.html" target="_blank"><br />
</a></div>
</ul>
<h3 class="subheading">Fundamentals</h3>
<ul class="cl_steps">
<li><span class="cu_learning">Profiles in Google Analytics:</span> <a href="javascript:openLearnBox('profiles')"></a> <a href="http://services.google.com/analytics/breeze/en/accounts_profiles/index.html" target="_blank">Watch presentation</a></li>
<div id="profiles" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Accounts and Profiles (7:09 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to create, manage, and delete accounts</li>
<li>best practices for managing accounts</li>
<li>when to create profiles</li>
<li>how to create, manage, and delete profiles</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/accounts_profiles/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Campaign Tracking and AdWords Integration:</span> <a href="javascript:openLearnBox('campaign_adwords')"></a><a href="http://services.google.com/analytics/breeze/en/campaigntracking_adwordsintegration/index.html" target="_blank">Watch presentation</a></li>
<div id="campaign_adwords" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Campaign Tracking and AdWords Integration (13:47 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to track campaigns using tagged links</li>
<li>how to track AdWords campaigns</li>
<li>when to use autotagging and how it works</li>
<li>how to enable autotagging</li>
<li>where to find AdWords data in your reports</li>
<li>the expected kinds of data discrepancies between AdWords and Analytics data</li>
<li>when and how to manually tag URLs</li>
<li>how to use the URL Builder</li>
<li>best practices for tagging links</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/campaigntracking_adwordsintegration/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learningsubject cu_learn_highlight">Analysis Focus &#8211; AdWords:</span> <a href="javascript:openLearnBox('analysis_adwords')"></a> <a href="http://services.google.com/analytics/breeze/en/interpreting_reports_adwords/index.html" target="_blank">Watch presentation</a></li>
<div id="analysis_adwords" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Understanding AdWords Reports (7:03 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to use the Clicks tab metrics in AdWords reports</li>
<li>how to analyze the effect of search result position on performance</li>
<li>how to track audio and TV campaigns in AdWords</li>
<li>how to track ad performance</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/interpreting_reports_adwords/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Goals in Google Analytics:</span> <a href="javascript:openLearnBox('goals')"></a><a href="http://services.google.com/analytics/breeze/en/goals/index.html" target="_blank">Watch presentation</a></li>
<div id="goals" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Goals and Funnels (8:13 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>the purpose of using goals, goal values, and funnels</li>
<li>when to use each Goal URL Match Type</li>
<li>how to assign meaningful values to goals</li>
<li>how goal conversions differ from transactions</li>
<li>how filters can affect goals</li>
<li>where to find goal and funnel information in reports</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/goals/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learningsubject cu_learn_highlight">Analysis Focus &#8211; Funnel Visualization:</span> <a href="javascript:openLearnBox('analysis_funnel')"></a> <a href="http://services.google.com/analytics/breeze/en/interpreting_reports_funnel/index.html" target="_blank">Watch presentation</a></li>
<div id="analysis_funnel" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Funnel Visualization (2:48 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to use and interpret the Funnel Visualization report</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/interpreting_reports_funnel/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Filters in Google Analytics:</span> <a href="http://services.google.com/analytics/breeze/en/filters/index.html" target="_blank">Watch presentation</a></li>
<div id="filters" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Google Analytics Filters (10:31 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>when to apply filters in Google Analytics</li>
<li>how filters act on data</li>
<li>how to create custom filters</li>
<li>the differences between the different kinds of filters (i.e. exclude, include, etc)</li>
<li>how to filter Google AdWords traffic</li>
<li>how to use filters and profiles together to track certain kinds of traffic</li>
<li>best practices for using filters</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/filters/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Regex and Google Analytics:</span> <a href="javascript:openLearnBox('regex')"></a> <a href="http://services.google.com/analytics/breeze/en/regex_ga/index.html" target="_blank">Watch presentation</a></li>
<div id="regex" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Regex (8:59 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>when to use regular expressions in Google Analytics</li>
<li>how to use the most common metacharacters: dot, backslash, etc.</li>
<li>some examples of common regular expressions in Google Analytics</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/regex_ga/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Cookies and Google Analytics:</span> <a href="javascript:openLearnBox('cookies')"></a> <a href="http://services.google.com/analytics/breeze/en/ga_cookies/index.html" target="_blank">Watch presentation</a></li>
<div id="cookies" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Cookies and Google Analytics (11:25 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how Google Analytics uses cookies</li>
<li>the differences between persistent and temporary cookies</li>
<li>the differences between first party and third party cookies</li>
<li>the names of the Google Analytics cookies and the information they track</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/ga_cookies/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">E-commerce Tracking:</span> <a href="javascript:openLearnBox('ecommerce')"></a> <a href="http://services.google.com/analytics/breeze/en/ecommerce/index.html" target="_blank">Watch presentation</a></li>
<div id="ecommerce" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Ecommerce Tracking (5:21 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>where to find ecommerce metrics in reports</li>
<li>how to enable and track ecommerce</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/ecommerce/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learningsubject cu_learn_highlight">Analysis Focus &#8211; Revenue Metrics:</span> <a href="javascript:openLearnBox('revenue')"></a> <a href="http://services.google.com/analytics/breeze/en/interpreting_reports_revenue/index.html" target="_blank">Watch presentation</a></li>
<div id="revenue" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Revenue Metrics (3:30 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>the differences between goal value and e-commerce revenue</li>
<li>how $Index is calculated and how to use it</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/interpreting_reports_revenue/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Domains and Subdomains:</span> <a href="javascript:openLearnBox('domains_subdomains')"></a> <a href="http://services.google.com/analytics/breeze/en/domains_subdomains/index.html" target="_blank">Watch presentation</a></li>
<div id="domains_subdomains" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Tracking Domains and Subdomains (7:14 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>when to track across domains using the _link() method</li>
<li>when to track across domains using the _linkByPost() method</li>
<li>how to track across subdomains</li>
<li>best practices for tracking across subdomains</li>
<li>how to track across multiple domains with subdomains</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/domains_subdomains/index.html" target="_blank"><br />
</a></div>
</ul>
<h3 class="subheading">In-Depth Analysis</h3>
<ul class="cl_steps">
<li><span class="cu_learning">Custom Reporting:</span> <a href="javascript:openLearnBox('custom_reporting')"></a> <a href="http://services.google.com/analytics/breeze/en/custom_reporting/index.html" target="_blank">Watch presentation</a></li>
<div id="custom_reporting" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Custom Reporting (4 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to create, save, and edit a custom report</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/custom_reporting/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Advanced Segmentation:</span> <a href="javascript:openLearnBox('advanced_segmentation')"></a><a href="http://services.google.com/analytics/breeze/en/advanced_segmentation/index.html" target="_blank">Watch presentation</a></li>
<div id="advanced_segmentation" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Advanced Segments (6 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how Advanced Segments differ from filtered profiles</li>
<li>to apply an Advanced Segment to your reports</li>
<li>how to create and modify an Advanced Segment</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/advanced_segmentation/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Motion Charts:</span> <a href="javascript:openLearnBox('motion_charts')"></a> <a href="http://services.google.com/analytics/breeze/en/motion_charts/index.html" target="_blank">Watch presentation</a></li>
<div id="motion_charts" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Motion Charts (4 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to read Motion Charts</li>
<li>how to create and save a Motion Chart</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/motion_charts/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Internal Site Search:</span> <a href="javascript:openLearnBox('internal_sitesearch')"></a> <a href="http://services.google.com/analytics/breeze/en/internal_site_search/index.html" target="_blank">Watch presentation</a></li>
<div id="internal_sitesearch" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Internal Site Search (9:40 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to set up internal site search</li>
<li>why internal site search is important</li>
<li>how to find site search information in your reports</li>
<li>how to interpret the Site Search Usage, Terms, Start Pages, and Destination Pages reports</li>
<li>how to use Search Refinement and Search Navigation options with the Search Terms report</li>
<li>how to set up and analyze Site Search Categories</li>
<li>how to find Site Search Trending</li>
<li>how Site Search metrics differ from the metrics in other reports</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/internal_site_search/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Event Tracking and Virtual Pageviews:</span> <a href="javascript:openLearnBox('event_virtual')"></a><a href="http://services.google.com/analytics/breeze/en/et_vps/index.html" target="_blank">Watch presentation</a></li>
<div id="event_virtual" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Event Tracking and Virtual Pageviews (7 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>when to use virtual pageviews versus event tracking</li>
<li>how to generate a virtual pageview</li>
<li>how to track an event using _trackEvent()</li>
<li>the relationship between Categories, Actions, Labels, and Values</li>
<li>the difference between Total Events and Unique Events</li>
<li>best practices for setting up Event Tracking</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/et_vps/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">The Custom Visitor Segment Variable:</span> <a href="javascript:openLearnBox('custom_visitorseg')"></a> <a href="http://services.google.com/analytics/breeze/en/customvisitorsegmentation/index.html" target="_blank">Watch presentation</a></li>
<div id="custom_visitorseg" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Custom Visitor Segmentation Variable (4:08 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to use and set the User Defined variable</li>
<li>the best practices for using User Defined</li>
<li>how to view User Defined values in reports</li>
</ul>
<p><a class="cu_breeze_link" href="http://services.google.com/analytics/breeze/en/customvisitorsegmentation/index.html" target="_blank"><br />
</a></div>
<li><span class="cu_learning">Additional Customizations:</span> <a href="javascript:openLearnBox('additional_cust')"></a> <a href="http://services.google.com/analytics/breeze/en/additional_customizations/index.html" target="_blank">Watch presentation</a></li>
<div id="additional_cust" class="cu_learncontent" style="display: block;">
<p class="cu_learntime">Additional Customizations (2:48 minutes)</p>
<p class="cu_learnhead">In this lesson, you will learn:</p>
<ul class="cu_learnlist">
<li>how to change session timeout value</li>
<li>how to change campaign expiration</li>
<li>how to change campaign precedence</li>
<li>how to add a search engine</li>
<li>how to treat certain keywords as direct</li>
<li>how to treat certain referring sites as direct</li>
</ul>
</div>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/what-is-gaiq-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Authorized Consultant (GAAC) Program</title>
		<link>http://blog.theexpertseo.com/google-analytics-authorized-consultant-gaac-program/</link>
		<comments>http://blog.theexpertseo.com/google-analytics-authorized-consultant-gaac-program/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 10:53:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[GAAC]]></category>
		<category><![CDATA[GACC programm]]></category>
		<category><![CDATA[Google Analytics Authorized Consultant]]></category>
		<category><![CDATA[google anaytics]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=75</guid>
		<description><![CDATA[Has your company become an expert at using Google Analytics? If so, you should consider becoming a Google Analytics Authorized Consultant (GAAC), to help your clients get the most out of Google Analytics. As a GAAC you&#8217;ll benefit from: The &#8220;Google Analytics Authorized Consultant&#8221; logo and designation Possible client referrals from Google sales teams Elevated [...]]]></description>
			<content:encoded><![CDATA[<p>Has your company become an expert at using Google Analytics? If so, you should consider becoming a Google Analytics Authorized Consultant (GAAC), to help your clients get the most out of Google Analytics. As a GAAC you&#8217;ll benefit from:</p>
<ul>
<li> The &#8220;Google Analytics Authorized Consultant&#8221; logo and designation</li>
<li> Possible client referrals from Google sales teams</li>
<li> Elevated technical support for Google Analytics</li>
<li> Listing on the Google Analytics Partner page</li>
<li> Invitation to attend annual GAAC summit at Google offices</li>
<li> Access to exclusive GAAC web forum to share ideas and technical tips with Google and other GAACs</li>
</ul>
<p>If you&#8217;re interested, please email <a href="mailto:gaac-requests@google.com">gaac-requests@google.com</a> with a detailed application document explaining how you meet all of the following criteria. Your application should be submitted in a PDF or Word attachment clearly detailing each of the criteria mentioned below. Failure to address each of the criteria below sufficiently will result in the rejection of your application.</p>
<ul>
<li>Must have at least 2 employees who are certified in the <a href="http://google.starttest.com/">GAIQ test</a>. More information can be found at <a href="http://www.google.com/support/conversionuniversity/?hl=en">Google Analytics Conversion University</a></li>
<li> Provide comprehensive details of 3 verifiable, paid, expertly deployed Google Analytics projects with 3 different clients we can contact for reference. Case studies must demonstrate a familiarity with the full range of Google Analytics features, most notably ecommerce reporting, filters/funnels, advanced segment use, custom reporting etc. Please also provide examples of customising code for your clients. Case studies should include ample text to convey the work undertaken and your methodologies for approaching such projects.</li>
<li> You offer a range of stand alone paid services related to Google Analytics, including implementation, configuration, training, and consulting. Please list your current Google Analytics services and the approximate prices charged. (Also please include any training materials you present to your clients when doing GA training. This could include the agenda and course materials your clients can take home to use as reference after the class.)</li>
<li> You must have a proven expertise in web analytics. Please list any speaking engagements at conferences, influential blogs, white papers, management bios, ad campaigns, marketing programs, and/or other evidence demonstrating your expertise with analytics and your ability to evangelize web analytics</li>
<li> Provide a link to your website that prominently describes your stand alone Google Analytics services.</li>
<li> If accepted into the program, you agree to send at least one employee to the Google Analytics Authorized Consultant summit at your own expense (generally held once per year over 4 days in Mountain View, CA, USA, covering technical, marketing and business topics as deemed appropriate by the GAAC team).</li>
<li> You will provide a report (sent by Google to successful applicants) by the last day of each calendar quarter summarizing all Google Analytics projects you have worked on during the quarter (listing client names and results achieved).</li>
<li> Have Professional Indemnity/Liability insurance as appropriate for your jurisdiction ($1m in the USA) &#8211; if this does not apply to your region, please disregard.</li>
<li> You must represent a business (individuals do not qualify) and be legally incorporated to do business in your locality.</li>
<li> Electronic customer support ticketing system to manage customer support requests.</li>
</ul>
<p>Organizations with the following are preferred:</p>
<ul>
<li> In house web designers and web developers</li>
<li> Expert knowledge of javascript, cookies, http headers and redirects</li>
<li> Knowledge of other web technologies (such as flash, jsp, asp, and php) highly desired</li>
<li> Conversion optimization focus, including the use of Google Website Optimizer. If possible please include Website Optimizer test results in one of your GA case studies</li>
<li> A dedicated sales team. We may ask your company to provide a sales pitch to our team on how you typically sell your Google Analytics services</li>
<li> Experience/ expertise in website usability, search marketing, etc.</li>
</ul>
<p>Google will review your application, and notify you of next steps. You may not refer to yourself as a GAAC and may not use the GAAC logo until Google has approved your application via email and you have agreed online to the Google Analytics Authorized Consultant Program Terms.</p>
<p>Either Google or you may terminate your GAAC status at any time and for any reason. Factors that may cause Google to do so include, but are not limited to:</p>
<ul>
<li> Failure to meet any of the criteria above</li>
<li> Poor feedback on your work from clients</li>
<li> Fewer than 12 Google Analytics engagements per year</li>
<li> Failure to maintain an up-to-date listing in the <a href="http://www.google.com/enterprise/marketplace/">Google Solutions Marketplace</a></li>
<li> Continued failure to respond to email or phone communication from Google</li>
</ul>
<p><font size="1">source &#8211; http://www.google.com/analytics/partnersupport</font>/consultants_criteria.html</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/google-analytics-authorized-consultant-gaac-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Toolbar Gets New Features</title>
		<link>http://blog.theexpertseo.com/google-toolbar-gets-new-features/</link>
		<comments>http://blog.theexpertseo.com/google-toolbar-gets-new-features/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 06:16:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[Add-ons]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Toolbar]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=48</guid>
		<description><![CDATA[New Tab Page, Right-to-Left Text Support Today Google announced a couple new features for the Google Toolbar in Firefox. The first one is the addition of a &#8220;new tab page.&#8221; This feature allows you to open different pages when you open a new tab, so you don&#8217;t just get the standard blank white page. Now [...]]]></description>
			<content:encoded><![CDATA[<p><strong>New Tab Page, Right-to-Left Text Support</strong><br />
Today Google <a href="http://googleblog.blogspot.com/2009/01/google-toolbar-in-firefox-personalized.html">announced a couple new features</a> for the Google Toolbar in Firefox. The first one is the addition of a &#8220;new tab page.&#8221;</p>
<p>This feature allows you to open different pages when you open a new tab, so you don&#8217;t just get the standard blank white page. Now you can bring up one of your favorite pages or one that you recently viewed. You can choose from up to 9 different thumbnails you have stored as well as recent bookmarks and recently closed tabs:</p>
<p><a href="http://1.bp.blogspot.com/_7ZYqYi4xigk/SYNIL8GEilI/AAAAAAAACTI/5Om8F-Hb-9E/s1600-h/ff-tabs-blogpost-image.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5297156956665186898" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 400px;" src="http://1.bp.blogspot.com/_7ZYqYi4xigk/SYNIL8GEilI/AAAAAAAACTI/5Om8F-Hb-9E/s400/ff-tabs-blogpost-image.jpg" border="0" alt="" /></a>&#8220;You can <a href="http://www.google.com/support/toolbar/bin/answer.py?hl=en&amp;answer=115562">edit the thumbnails</a>, and all this data remains locally on your browser, which means none of the information about your most viewed sites or recently closed pages will be sent back to Google,&#8221; <a href="http://googleblog.blogspot.com/2009/01/google-toolbar-in-firefox-personalized.html">explains</a> Software Engineer Sergey Ryazanov of the Toolbar Team. &#8220;If for whatever reason you don&#8217;t like this updated new tab page, you can always change it back to a blank page or to the website of your choice through either your Toolbar or Firefox settings.&#8221;</p>
<p><strong>To edit your thumbnails, simply: </strong></p>
<p>1. Open a new tab to view the new tab page.</p>
<p>2. Click the Edit thumbnails link near the bottom of the page.</p>
<p>3. Click the X icon for each thumbnail you wish to remove.</p>
<p>4. Click the Done button.</p>
<p>The second new feature of <a href="http://www.google.com/tools/firefox/toolbar/FT5/intl/en/index.html?tbbrand=GZEZ&amp;utm_campaign=en&amp;utm_source=en-et-ffblog&amp;utm_medium=et">the latest toolbar release</a> is the ability for Hebrew and Arabic-speaking users to access Toolbar 5, which includes right-to-left text support. Google also notes that some widely reported bugs have been fixed, though they don&#8217;t go into specific detail on that.</p>
<p><span style="font-size: xx-small;"><strong>About the author:</strong><br />
Chris Crum is a staff writer for WebProNews and iEntry Network.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/google-toolbar-gets-new-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Name Hijacking!</title>
		<link>http://blog.theexpertseo.com/domain-name-hijacking/</link>
		<comments>http://blog.theexpertseo.com/domain-name-hijacking/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 05:59:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO News/Tips]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[WHOIS]]></category>

		<guid isPermaLink="false">http://blog.theexpertseo.com/?p=46</guid>
		<description><![CDATA[Domain names are becoming &#8220;hot&#8221; property &#8211; as in *theft* for resale. More and more companies are finding they cannot get their trademarked names as a domain name because so few good names are left. But sometimes it&#8217;s outright extortion as when a Fortune 500 company name is reserved by someone that has no intention [...]]]></description>
			<content:encoded><![CDATA[<p>Domain names are becoming &#8220;hot&#8221; property &#8211; as in *theft* for resale. More and more companies are finding they cannot get their trademarked names as a domain name because so few good names are left. But sometimes it&#8217;s outright extortion as when a Fortune 500 company name is reserved by someone that has no intention of developing a site under the domain, but simply &#8220;parks&#8221; it somewhere and waits to be contacted by the big boys to purchase the name for astronomical fees.</p>
<p>A more lucrative market for domain names exists in short, memorable generic names like Loans.com or Homes.com which can apply to an entire industry and the prices being paid for them is outrageous, as can be seen in recent news.</p>
<p>One of the lesser known and more frustrating issues is when a small business name or new product domain name is reserved by someone hoping to make a buck or two. Here&#8217;s a question faced by small business owners getting started online.</p>
<p>&#8220;I&#8217;ve trademarked a name, but the domain name is taken, it was reserved by another company right after I registered my trademark. Do I have a legal right to the domain name?&#8221;</p>
<p>The following link is to a page titled &#8220;Domain Names, A Trademark Owner&#8217;s Nightmare&#8221;</p>
<p><a href="http://www.mdweblaw.com/home/domainnames.html">http://www.mdweblaw.com/home/domainnames.html</a></p>
<p>It discusses legal issues and cites two cases that have been taken to court over domain name hijacking.</p>
<p>People who do this may be doing it intentionally or innocently, but generally, you don&#8217;t have a case unless you&#8217;ve got a long established use of the trademarked name and can prove that the registrant was intending to extort excessive fees from you in the hopes you&#8217;d buy the name back from them.</p>
<p>You can take it to court if you like, but it&#8217;s not likely to do you any good unless you can prove that the registrant had the intent to squat on the name and not use it, hoping that you would be willing to pay excessively to get it back.</p>
<p>Still, the case may cost you more than it&#8217;s worth.</p>
<p>This is an unresolved battle with more and more companies. Until laws are passed (not likely) there will be no way to protect a domain name other than being the first one to reserve it. You may have a case if they are harming your business in some way by the inappropriate use of that name. But if they are simply using for another purpose, you might consider selling them the trademark instead. <img src='http://blog.theexpertseo.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Contact the registrant of <a title="www.your-trademark.com" href="http://www.your-trademark.com/">www.your-trademark.com</a> to see who it is, there&#8217;s a way to find the registered owner by going to this address and typing in the domain name.</p>
<p><a href="http://www.networksolutions.com/cgi-bin/whois/whois/">http://www.networksolutions.com/cgi-bin/whois/whois/</a></p>
<p>It will return a registrant name, host name and the name servers. You might consider contacting them and simply explaining your trademark situation, your desire to own the name and then simply ask if they would consider a reasonable solution. Possibly something as simple as a suggestion that you&#8217;d like to avoid a court battle and make it worth their time to sell it to you by offering twice what they paid for it.</p>
<p>If they have not spent large sums developing a branding strategy for the name, they may be willing to give it up. If it&#8217;s only few months old it may be possible that they haven&#8217;t begun to develop their site or their strategy yet. You may be assuming the worst but then be confronted with a friendly and accomodating person willing to look for an equitable solution!</p>
<div class="about-the-author"><strong><span style="font-size: xx-small;">About the author:</span></strong><span style="font-size: xx-small;"><br />
Mike Banks Valentine operates the WebSite101 Domain Name Tutorial as well as the Small Business Ecommerce Tutorial and blogs his SEO Commentary at RealitySEO.com</span></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.theexpertseo.com/domain-name-hijacking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

