<?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"
	>

<channel>
	<title>SEO Dubai</title>
	<atom:link href="http://www.seodubai.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.seodubai.org</link>
	<description>Search Engine Marketing.</description>
	<pubDate>Mon, 14 Jul 2008 05:52:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Basic Redirect using 301 Permanent Redirect.</title>
		<link>http://www.seodubai.org/2008/06/13/basic-redirect-using-301-permanent-redirect/</link>
		<comments>http://www.seodubai.org/2008/06/13/basic-redirect-using-301-permanent-redirect/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 06:32:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[301 redirect]]></category>

		<category><![CDATA[how to redirect 301]]></category>

		<guid isPermaLink="false">http://www.seodubai.org/?p=11</guid>
		<description><![CDATA[New domain name? Need to change a file name? Hierarchy of your servers directory structure change?
 meta http-equiv=&#34;refresh&#34;&#8230; is highly frowned on by search engines and is  commonly used by spammers. As such, THIS SHOULD BE AVOIDED.
 A 301 Redirect as it is commonly referred to will allow you to make these  changes [...]]]></description>
			<content:encoded><![CDATA[<p><strong>New domain name?</strong><strong><br /> Need to change a file name?</strong><strong><br /> Hierarchy of your servers directory structure change?</strong></p>
<p> meta http-equiv=&quot;refresh&quot;&#8230; is highly frowned on by search engines and is  commonly used by spammers. As such, THIS SHOULD BE AVOIDED.</p>
<p> A 301 Redirect as it is commonly referred to will allow you to make these  changes without compromising your hard earned SEO results.</p>
<p><span id="more-11"></span>Using the Apache web server, fortunately this is a simply task.</p>
<p>There are a few different places you can set various &#39;Redirect&#39; directives such  as your servers main configuration file (typically httpd.conf) or within a  &#39;Virtual Host&#39; container inside one of your server configuration files. The  final method and the one we will be discussing here is using your servers  directory Auth file (AKA: .htaccess).</p>
<p> The first thing you do is create a file named .htaccess</p>
<p> There are a couple different way to approach this but in it most simple form you  can just issue a &#39;Redirect&#39; request in your .htaccess file like so:</p>
<p> Redirect /foo http://foobar.com/foo</p>
<p> In this example if the client requests<br /> http://myserver.com/foo/foobar.txt,</p>
<p> it will be told to access<br /> http://foobar.com/foo/foobar.txt instead.</p>
<p> Now this is not quite complete yet, since we need to specifically send a 301  status code. Without the status argument &quot;Redirect&quot; will send a temporary  redirect status (302). So we simply take the above example and change it to:</p>
<p> Redirect 301 /foo http://foobar.com/foo</p>
<p> OR</p>
<p> Redirect permanent /foo http://foobar.com/foo</p>
<p> And there is also a specific &#39;RedirectPermanent&#39; directive as well so you could  just as easily say:</p>
<p> RedirectPermanent /foo http://foobar.com/foo</p>
<p> So far so good? Excellent. So now you ask what if I want to change ALL my .htm  files to .html. Introducing &#39;RedirectMatch&#39; which makes use of standard regular  expression syntax.</p>
<p> RedirectMatch (.*)\.htm$ http://myserver.com$1.html</p>
<p> Going into an in depth explanation of regular expression if beyond the scope of  this tutorial but a quick Google search for &quot;Perl compatible regular expression  syntax&quot; should set you on your way.</p>
<p> What the above example does is match any character &#39;.&#39; any number of times &#39;*&#39;,  i.e., that is it will match everything. (.*) the parenthesis group the result  into a variable which we will use with a back-reference ($1) later in the  directive. Next, &#39;\&#39; simply escapes the following &#39;.&#39;. Since &#39;.&#39; has special  meaning in regular expression syntax we need to escape it if we want to use it  in the literal sense, &#39;\&#39; provides the escape sequence. Next is the &#39;.htm&#39; which  we know is a static part of the search string we&#39;re looking for followed by &#39;$&#39;  which simply marks the end of the pattern in a regular expression (regex). So  the above example takes any file with an .htm extension and redirects the client  to the same file at the location specified, i.e., http://myserver.com$1.html</p>
<p> But wait, what&#39;s that &#39;$1&#39;? Well remember we said we were going to store a  variable for use in a back reference later, well here it is. The &#39;$1&#39; simply  says that whatever was in (.*) is now represented by $1</p>
<p> So, the client request for example foobar.htm, the above directive matches this  and redirects the client to http://myserver.com/foobar.html because &#39;foobar&#39; is  stored in &#39;$1&#39;. Just as with &#39;Redirect&#39;, &#39;RedirectMatch&#39; takes a status argument  so to issue a 301 (permanent) redirect we do this:</p>
<p> RedirectMatch 301 (.*)\.htm$ http://myserver.com$1.html</p>
<p> Another method we can use is via mod_rewrite. This requires that the mod_rewrite  module is active on your webserver. It usually is and is done by the system  administrators when they installed the webserver. mod_rewrite is a very powerful  URL re-writing engine and we will only by scratching a hair on its head here.</p>
<p> Again, in your .htaccess file</p>
<p> RewriteEngine ON<br /> RewriteRule ^(.*)$ http://mynewdomain.com/$1 [R=301,L]</p>
<p> The above example will re-map your old domain to a new one and issue a 301  status code (permanent redirect). So a request for</p>
<p> http://olddomain.com/foobar.html will go to</p>
<p> http://mynewdomain.com/foobar.html</p>
<p> If you simply want to redirect all requests regardless of the page requested to  the new domain you could use:</p>
<p> RewriteRule /.* http://mynewdomain.com/ [R=301,L]</p>
<p> In this case no matter what file or directory is requested they will all go to</p>
<p> http://mynewdomain.com/ i.e., http://myolddomain.com/foobar.html</p>
<p> will go to http://mynewdomain.com/</p>
<p> The [R=301,L] means redirect the client and send a 301 status code (R=301) and  make this the last rule (L).</p>
<p> Whichever method you decide on, once completed upload the resulting file to your</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seodubai.org/2008/06/13/basic-redirect-using-301-permanent-redirect/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to increase traffic using SEO</title>
		<link>http://www.seodubai.org/2008/04/29/how-to-increase-traffic-using-seo/</link>
		<comments>http://www.seodubai.org/2008/04/29/how-to-increase-traffic-using-seo/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 06:32:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[seo]]></category>

		<category><![CDATA[dubai seo traffic]]></category>

		<category><![CDATA[seo traffic]]></category>

		<guid isPermaLink="false">http://www.seodubai.org/?p=9</guid>
		<description><![CDATA[Do you want to know how to increase website traffic here in Dubai? Have you used any search engine optimization on your website? Before you do any expensive web advertising or build an expensive new site try using some simple search engine optimization on your website to increase your web site traffic.
 Search engine optimization [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to know how to increase website traffic here in Dubai? Have you used any search engine optimization on your website? Before you do any expensive web advertising or build an expensive new site try using some simple search engine optimization on your website to increase your web site traffic.</p>
<p> Search engine optimization is the best way to increase web site traffic and increase your position on the search engine results pages. Getting into a higher place on the search engine results pages means more hits to your website and more customers.<br /> <span id="more-9"></span><br /> In order to get your site high up on that search engine results page and increase web site traffic you need to use search engine optimization on your website. Search engine optimization can often be more effective than web advertising for increasing website traffic. Now you&rsquo;re probably wondering how you can practically implement search engine optimization on your site to increase web site traffic.</p>
<p> There are two ways that you increase the search engine optimization on your site.If you have an existing site that has a lot of good content on it already you can have that content rewritten to add in some search engine optimized keywords and key phrases or you can write all new content and completely change the content that you have on the site.</p>
<p> Even if you already have a lot of content on the site sometimes it&rsquo;s a good idea to put in all new search engine optimized content just to freshen up the site a little and draw new visitor. You can write the search engine optimized content yourself or you can hire writers that are experienced in creating search engine marketing and search engine optimized content to increase web site traffic. Hiring a professional SEO copy writer is a good idea if you want to see an immediate increase in web site traffic because a professional copy writer will be able to create content for your site very quickly.</p>
<p> When you&rsquo;re trying to build a website that is competitive in your market and will draw a lot of web traffic from the very beginning it&rsquo;s a good idea to hire professional SEO writers who can make sure that the content on your site will get it listed on the high in search engine. If your site doesn&rsquo;t make it on the first page of the SERP chances are good that you won&rsquo;t see any increase in web traffic. Your site needs to be on the first page of the SERP in order to increase web site traffic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seodubai.org/2008/04/29/how-to-increase-traffic-using-seo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Video Redesign by Google and More Tips about Video</title>
		<link>http://www.seodubai.org/2008/04/20/video-redesign-by-google-and-more-tips-about-video/</link>
		<comments>http://www.seodubai.org/2008/04/20/video-redesign-by-google-and-more-tips-about-video/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 09:37:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[Google Video]]></category>

		<category><![CDATA[Video Tips]]></category>

		<guid isPermaLink="false">http://www.seodubai.org/?p=8</guid>
		<description><![CDATA[Google Video has undergone yet another redesign. Both Google Blogoscoped and Google Operating System have detailed coverage with screen shots of the new design and how it compared to the old design.  Tools For Your Video Career by Duncan at TechCrunch has an outstanding rundown on tools you can use to make your video [...]]]></description>
			<content:encoded><![CDATA[<p>Google Video has undergone yet another redesign. Both Google Blogoscoped and Google Operating System have detailed coverage with screen shots of the new design and how it compared to the old design.<br /> <span id="more-8"></span><br /> Tools For Your Video Career by Duncan at TechCrunch has an outstanding rundown on tools you can use to make your video producing, editing, streaming and distribution a success. I highly recommend reading this post, if you are just getting started or want to learn ways to improve your video distribution and listenership numbers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seodubai.org/2008/04/20/video-redesign-by-google-and-more-tips-about-video/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Moving website using 301 redirect</title>
		<link>http://www.seodubai.org/2008/04/20/moving-website-using-301-redirect/</link>
		<comments>http://www.seodubai.org/2008/04/20/moving-website-using-301-redirect/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 04:36:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[seo]]></category>

		<category><![CDATA[.htaccess]]></category>

		<category><![CDATA[301 redirect]]></category>

		<guid isPermaLink="false">http://www.seodubai.org/?p=7</guid>
		<description><![CDATA[If you are planning to move your website to different domain without hurting your website performance in major search engine results especially GOOGLE?
 The first objective that you need to do is to switch unseen and visible to the user and to make sure that major search engine specially Google that your new created pages [...]]]></description>
			<content:encoded><![CDATA[<p>If you are planning to move your website to different domain without hurting your website performance in major search engine results especially GOOGLE?</p>
<p> The first objective that you need to do is to switch unseen and visible to the user and to make sure that major search engine specially Google that your new created pages must get the same quality signals as the pages on your own website. Every time you move your website to different domain, darned 404 File Not Found can hurt the user experience and negatively force your site&#39;s performance in major search engine specially Google search results.</p>
<p>Let&#39;s take an example moving your domain to another one. (www.seodubai.com to www.seodubai.org ) and this is different when you moving your IP&#39;s.&nbsp;</p>
<p><span id="more-7"></span> </p>
<ul style="color: #000000">
<li>Test the move process by moving the contents of one directory or subdomain first. Then use a <a href="http://en.wikipedia.org/wiki/301_redirect">301 Redirect</a> to permanently redirect those pages on your old site to your new site. This tells Google and other search engines that your site has permanently moved.</li>
</ul>
<ul style="color: #000000">
<li>Once this is complete, check to see that the pages on your new site are appearing in Google&#39;s search results. When you&#39;re satisfied that the move is working correctly, you can move your entire site. Don&#39;t do a blanket redirect directing all traffic from your old site to your new home page. This will avoid 404 errors, but it&#39;s not a good user experience. A page-to-page redirect (where each page on the old site gets redirected to the corresponding page on the new site) is more work, but gives your users a consistent and transparent experience. If there won&#39;t be a 1:1 match between pages on your old and new site, try to make sure that every page on your old site is at least redirected to a new page with similar content.</li>
</ul>
<ul style="color: #000000">
<li>If you&#39;re changing your domain because of site rebranding or redesign, you might want to think about doing this in two phases: first, move your site; and second, launch your redesign. This manages the amount of change your users see at any stage in the process, and can make the process seem smoother. Keeping the variables to a minimum also makes it easier to troubleshoot unexpected behavior.</li>
</ul>
<ul style="color: #000000">
<li>Check both <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=55281">external and internal links to pages on your site</a>. Ideally, you should contact the webmaster of each site that links to yours and ask them to update the links to point to the page on your new domain. If this isn&#39;t practical, make sure that all pages with incoming links are redirected to your new site. You should also check internal links within your old site, and update them to point to your new domain. Once your content is in place on your new server, use a link checker like <a href="http://home.snafu.de/tilman/xenulink.html">Xenu</a> to make sure you don&#39;t have broken legacy links on your site. This is especially important if your original content included absolute links (like www.example.com/cooking/recipes/chocolatecake.html) instead of relative links (like &#8230;/recipes/chocolatecake.html).</li>
</ul>
<ul style="color: #000000">
<li>To prevent confusion, it&#39;s best to make sure you retain control of your old site domain for at least 180 days.</li>
</ul>
<ul style="color: #000000">
<li>Finally, keep both your new and old site verified in Webmaster Tools, and review crawl errors regularly to make sure that the 301s from the old site are working properly, and that the new site isn&#39;t showing unwanted 404 errors.</li>
</ul>
<p> <span style="color: #000000"> We&#39;ll admit it, moving is never easy - but these steps should help ensure that none of your good web reputation falls off the truck in the process.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.seodubai.org/2008/04/20/moving-website-using-301-redirect/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why Small Businesses Need SEO to be Successful</title>
		<link>http://www.seodubai.org/2008/04/17/why-small-businesses-need-seo-to-be-successful/</link>
		<comments>http://www.seodubai.org/2008/04/17/why-small-businesses-need-seo-to-be-successful/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 10:48:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[seo]]></category>

		<category><![CDATA[need seo]]></category>

		<category><![CDATA[seo dubai]]></category>

		<category><![CDATA[Why You Need SEO]]></category>

		<guid isPermaLink="false">http://www.seodubai.org/?p=5</guid>
		<description><![CDATA[More than 70% of online consumers start their quest for a product, service or support call using a search engine. If you&#8217;re a small business, how can you honestly afford NOT to be associated with this massive audience?
The bottom line is that you cannot afford to miss such opportunities &#8212; and today &#8212; we&#8217;ll discuss [...]]]></description>
			<content:encoded><![CDATA[<p><span style="float: left">More than 70% of online consumers start their quest for a product, service or support call using a search engine. If you&rsquo;re a small business, how can you honestly afford NOT to be associated with this massive audience?</span></p>
<p>The bottom line is that you cannot afford to miss such opportunities &mdash; and today &mdash; we&rsquo;ll discuss how you as a small business owner can use search to drive more business from people who have never even heard of you before.</p>
<p>It really is a beautiful thing.</p>
<h3>Why You Need SEO</h3>
<p>As a small business owner, you probably have a tiny marketing budget if one actually exists at all. The beauty of search engine optimization though is that it&rsquo;s completely free for you to take advantage of assuming that you have the courage to edit some web pages.</p>
<p><span id="more-5"></span></p>
<p>There are literally <a href="http://tools.seobook.com/" target="_blank">hundreds of tools</a> available to use that will allow you to download, edit and even research some simple elements of search engine optimization.</p>
<p>Beyond that, search engine optimization will provide your business with a long history of leads without any recurring costs. For example, if you optimize your site effectively as a <a href="http://www.google.com/search?q=Florist+in+Menlo+Park&amp;sourceid=navclient-ff&amp;ie=UTF-8&amp;rlz=1B3GGGL_enUS211US211" target="_blank">Florist in Menlo Park</a> &mdash; visitors can find you years from now. If you were to actually spend money advertising the same message &mdash; your newspaper, magazine ads and radio commercials would&rsquo;ve all been out of print or in the trash by that same time.</p>
<p>So, to recap here &mdash; we&rsquo;re talking about free traffic, from qualified leads, who are interested in your service. And all that&rsquo;s required from you is a little bit of passion and patience.</p>
<p>Ultimately, you should consult with a professional search engine optimization service provider to make the most of your plans. Out of the box though, there are a number of things that you can do to help market your business on the Internet.</p>
<h3>Quick Tips to Get You Started</h3>
<p>There&rsquo;s no excuses left for your brick and mortar business to be left on the outside of Google Local. If you have a <a href="https://www.google.com/accounts/Login" target="_blank">Google Account</a>, you can quickly submit your business profile to the industry giant and receive free promotion.</p>
<p>To add or edit your business on Google Local, head on over to:<br /> <a href="http://www.google.com/local/add%20" target="_blank">http://www.google.com/local/add</a></p>
<p>Better still, you have the opportunity to have your customers&rsquo; rate your business using the same <a href="http://local.google.com/" target="_blank">Google Local</a> features &mdash; so if you&rsquo;re proud of what you bring to the table, encourage your clients to get involved!</p>
<p>Now, head on over and do the same exact thing on&hellip;</p>
<ul>
<li class="MsoNormal"><a href="http://local.yahoo.com%20/" target="_blank">local.yahoo.com </a><a href="http://local.live.com/" target="_blank">local.live.com </a></li>
<li class="MsoNormal"><a href="http://www.citysearch.com/" target="_blank">www.citysearch.com</a></li>
</ul>
<p>Now that you have informed the biggest search providers in the world with information on your business &mdash; start researching the basics of on site optimization or hire a professional to assist you with a solid plan to follow through on!</p>
<p><em>Sujan Patel is Director of Search at <a href="http://www.singlegrain.com/blog/" target="_blank">Single Grain</a>, which specializes in Search Engine Optimization and Social Media Marketing</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.seodubai.org/2008/04/17/why-small-businesses-need-seo-to-be-successful/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SEO Dubai: How to learn search engine optimization?</title>
		<link>http://www.seodubai.org/2008/04/14/seo-dubai-how-to-learn-search-engine-optimization/</link>
		<comments>http://www.seodubai.org/2008/04/14/seo-dubai-how-to-learn-search-engine-optimization/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 06:36:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[seo]]></category>

		<category><![CDATA[dubai seo]]></category>

		<category><![CDATA[how to learn seo]]></category>

		<category><![CDATA[seo dubai]]></category>

		<guid isPermaLink="false">http://www.seodubai.org/?p=4</guid>
		<description><![CDATA[SEO Dubai: Search engine optimization Dubai (SEO Dubai) is the process of improving the volume and quality of traffic to a web site from search engines via &#8220;natural&#8221; (&#8221;organic&#8221; or &#8220;algorithmic&#8221;) search results for targeted keywords. Usually, the earlier a site is presented in the search results or the higher it &#8220;ranks&#8221;, the more searchers [...]]]></description>
			<content:encoded><![CDATA[<p>SEO Dubai: Search engine optimization Dubai (<strong>SEO Dubai</strong>) is the process of improving the volume and quality of traffic to a web site from search engines via &#8220;natural&#8221; (&#8221;organic&#8221; or &#8220;algorithmic&#8221;) search results for <a href="http://www.seodubai.org/wp-admin/post-new.php#"><strong>targeted keywords</strong></a>. Usually, the earlier a site is presented in the search results or the higher it &#8220;ranks&#8221;, the more searchers will visit that site. SEO can also target different kinds of search, including image search, local search, and industry-specific vertical search engines.</p>
<p>Below are the simple steps to learn search engine optimization.</p>
<p>Prep work and begin building content. Long before the domain name is settled on, start putting together notes to build at least a 100 page site. That&#8217;s just for openers. That&#8217;s 100 pages of real content, as opposed to link pages, resource pages, about/copyright/tos&#8230;etc eg: fluff pages.</p>
<p><strong>Domain name:</strong><br />
Easily brandable. You want &#8220;google.com&#8221; and not &#8220;mykeyword.com&#8221;. Keyword domains are out - branding and name recognition are in - big time in. The value of keywords in a domain name have never been less to se&#8217;s. Learn the lesson of &#8220;goto.com&#8221; becomes &#8220;Overture.com&#8221; and why they did it. It&#8217;s one of the most powerful gut check calls I&#8217;ve ever seen on the internet. That took serious resolve and nerve to blow away several years of branding. (that is a whole &#8216;nother article, but learn the lesson as it applies to all of us).</p>
<p><strong>Site Design:</strong><br />
The simpler the better. Rule of thumb: text content should out weight the html content. The pages should validate and be usable in everything from Lynx to leading edge browsers. eg: keep it close to html 3.2 if you can. Spiders are not to the point they really like eating html 4.0 and the mess that it can bring. Stay away from heavy: flash, dom, java, java script. Go external with scripting languages if you must have them - there is little reason to have them that I can see - they will rarely help a site and stand to hurt it greatly due to many factors most people don&#8217;t appreciate (search engines distaste for js is just one of them).<br />
Arrange the site in a logical manner with directory names hitting the top keywords you wish to hit.<br />
You can also go the other route and just throw everything in root (this is rather controversial, but it&#8217;s been producing good long term results across many engines).<br />
Don&#8217;t clutter and don&#8217;t spam your site with frivolous links like &#8220;best viewed&#8221; or other counter like junk. Keep it clean and professional to the best of your ability.</p>
<p><strong>Learn the lesson of Google itself - simple is retro cool - simple is what surfers want.</strong></p>
<p>Speed isn&#8217;t everything, it&#8217;s almost the only thing. Your site should respond almost instantly to a request. If you get into even 3-4 seconds delay until &#8220;something happens&#8221; in the browser, you are in long term trouble. That 3-4 seconds response time may vary for site destined to live in other countries than your native one. The site should respond locally within 3-4 seconds (max) to any request. Longer than that, and you&#8217;ll lose 10% of your audience for every second. That 10% could be the difference between success and not.</p>
<p><strong>The pages:</strong></p>
<p><strong>Page Size:</strong><br />
The smaller the better. Keep it under 15k if you can. The smaller the better. Keep it under 12k if you can. The smaller the better. Keep it under 10k if you can - I trust you are getting the idea here. Over 5k and under 10k. Ya - that bites - it&#8217;s tough to do, but it works. It works for search engines, and it works for surfers. Remember, 80% of your surfers will be at 56k or even less.</p>
<p><strong>Content:</strong><br />
Build one page of content and put online per day at 200-500 words. If you aren&#8217;t sure what you need for content, start with the Overture keyword suggester and find the core set of keywords for your topic area. Those are your subject starters.</p>
<p><strong>Density, position, yada&#8230;</strong><br />
Simple old fashioned seo from the ground up.<br />
Use the keyword once in title, once in description tag, once in a heading, once in the url, once in bold, once in italic, once high on the page, and hit the density between 5 and 20% (don&#8217;t fret about it). Use good sentences and speel check it <img src='http://www.seodubai.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> Spell checking is becoming important as se&#8217;s are moving to auto correction during searches. There is no longer a reason to look like you can&#8217;t spell (unless you really are phonetically challenged).</p>
<p><strong>Outbound Links:</strong><br />
From every page, link to one or two high ranking sites under that particular keyword. Use your keyword in the link text (this is ultra important for the future).</p>
<p><strong>Insite Cross links.</strong><br />
(cross links in this context are links WITHIN the same site)<br />
Link to on topic quality content across your site. If a page is about food, then make sure it links it to the apples and veggies page. Specifically with Google, on topic cross linking is very important for sharing your pr value across your site. You do NOT want an &#8220;all star&#8221; page that out performs the rest of your site. You want 50 pages that produce 1 referral each a day and do NOT want 1 page that produces 50 referrals a day. If you do find one page that drastically out produces the rest of the site with Google, you need to off load some of that pr value to other pages by cross linking heavily. It&#8217;s the old share the wealth thing.<br />
<strong><br />
Put it Online.</strong><br />
Don&#8217;t go with virtual hosting - go with a stand alone ip.<br />
Make sure the site is &#8220;crawlable&#8221; by a spider. All pages should be linked to more than one other page on your site, and not more than 2 levels deep from root. Link the topic vertically as much as possible back to root. A menu that is present on every page should link to your sites main &#8220;topic index&#8221; pages (the doorways and logical navigation system down into real content).<br />
Don&#8217;t put it online before you have a quality site to put online. It&#8217;s worse to put a &#8220;nothing&#8221; site online, than no site at all. You want it flushed out from the start.</p>
<p>Go for a listing in the ODP. If you have the budget, then submit to Looksmart and Yahoo. If you don&#8217;t have the budget, then try for a freebie on Yahoo (don&#8217;t hold your breath).</p>
<p><strong>Submit</strong><br />
Submit the root to: Google, Fast, Altavista, WiseNut, (write Teoma), DirectHit, and Hotbot. Now comes the hard part - forget about submissions for the next six months. That&#8217;s right - submit and forget.</p>
<p><strong> Logging and Tracking:</strong><br />
Get a quality logger/tracker that can do justice to inbound referrals based on log files (don&#8217;t use a lame graphic counter - you need the real deal). If your host doesn&#8217;t support referrers, then back up and get a new host. You can&#8217;t run a modern site without full referrals available 24&#215;7x365 in real time.</p>
<p><strong>Spiderlings:</strong><br />
Watch for spiders from se&#8217;s. Make sure those that are crawling the full site, can do so easily. If not, double check your linking system (use standard hrefs) to make sure the spider found it&#8217;s way throughout the site. Don&#8217;t fret if it takes two spiderings to get your whole site done by Google or Fast. Other se&#8217;s are pot luck and doubtful that you will be added at all if not within 6 months.</p>
<p><strong>Topic directories.</strong><br />
Almost every keyword sector has an authority hub on it&#8217;s topic. Go submit within the guidelines.</p>
<p><strong>Links</strong><br />
Look around your keyword sector in Googles version of the ODP. (this is best done AFTER getting an odp listing - or two). Find sites that have links pages or freely exchange links. Simply request a swap. Put a page of on topic, in context links up your self as a collection spot.<br />
Don&#8217;t freak if you can&#8217;t get people to swap links - move on. Try to swap links with one fresh site a day. A simple personal email is enough. Stay low key about it and don&#8217;t worry if site Z won&#8217;t link with you - they will - eventually they will.</p>
<p><strong>Content.</strong><br />
One page of quality content per day. Timely, topical articles are always the best. Try to stay away from to much &#8220;bloggin&#8221; type personal stuff and look more for &#8220;article&#8221; topics that a general audience will like. Hone your writing skills and read up on the right style of &#8220;web speak&#8221; that tends to work with the fast and furious web crowd.</p>
<p>Lots of text breaks - short sentences - lots of dashes - something that reads quickly.</p>
<p>Most web users don&#8217;t actually read, they scan. This is why it is so important to keep low key pages today. People see a huge overblown page by random, and a portion of them will hit the back button before trying to decipher it. They&#8217;ve got better things to do that waste 15 seconds (a stretch) at understanding your whiz bang flash menu system. Because some big support site can run flashed out motorhead pages, that is no indication that you can. You don&#8217;t have the pull factor they do.</p>
<p>Use headers, and bold standout text liberally on your pages as logical separators. I call them scanner stoppers where the eye will logically come to rest on the page.</p>
<p><strong>Gimmicks.</strong><br />
Stay far away from any &#8220;fades of the day&#8221; or anything that appears spammy, unethical, or tricky. Plant yourself firmly on the high ground in the middle of the road.</p>
<p><strong>Link backs</strong><br />
When YOU receive requests for links, check the site out before linking back with them. Check them through Google and their pr value. Look for directory listings. Don&#8217;t link back to junk just because they asked. Make sure it is a site similar to yours and on topic.<br />
<strong><br />
Rounding out the offerings:</strong><br />
Use options such as Email-a-friend, forums, and mailing lists to round out your sites offerings. Hit the top forums in your market and read, read, read until your eyes hurt you read so much.<br />
Stay away from &#8220;affiliate fades&#8221; that insert content on to your site.</p>
<p><strong>Beware of Flyer and Brochure Syndrome</strong><br />
If you have an ecom site or online version of bricks and mortar, be careful not to turn your site into a brochure. These don&#8217;t work at all. Think about what people want. They aren&#8217;t coming to your site to view &#8220;your content&#8221;, they are coming to your site looking for &#8220;their content&#8221;. Talk as little about your products and yourself as possible in articles (raise eyebrows&#8230;yes, I know).</p>
<p>Build one page of content per day.<br />
Head back to the Overture suggestion tool to get ideas for fresh pages.</p>
<p><strong>Study those logs.</strong><br />
After 30-60 days you will start to see a few referrals from places you&#8217;ve gotten listed. Look for the keywords people are using. See any bizarre combinations? Why are people using those to find your site? If there is something you have over looked, then build a page around that topic. Retro engineer your site to feed the search engine what it wants.<br />
If your site is about &#8220;oranges&#8221;, but your referrals are all about &#8220;orange citrus fruit&#8221;, then you can get busy building articles around &#8220;citrus&#8221; and &#8220;fruit&#8221; instead of the generic &#8220;oranges&#8221;.<br />
The search engines will tell you exactly what they want to be fed - listen closely, there is gold in referral logs, it&#8217;s just a matter of panning for it.</p>
<p><strong>Timely Topics</strong><br />
Nothing breeds success like success. Stay abreast of developments in your keyword sector. If big site &#8220;Z&#8221; is coming out with product &#8220;A&#8221; at the end of the year, then build a page and have it ready in October so that search engines get it by December. eg: go look at all the Xbox and XP sites in Google right now - those are sites that were on the ball last summer.</p>
<p><strong>Friends and Family</strong><br />
Networking is critical to the success of a site. This is where all that time you spend in forums will pay off. pssst: Here&#8217;s the catch-22 about forums: lurking is almost useless. The value of a forum is in the interaction with your fellow colleagues and cohorts. You learn long term by the interaction - not by just reading.<br />
Networking will pay off in link backs, tips, email exchanges, and it will put you &#8220;in the loop&#8221; of your keyword sector.</p>
<p><strong>Notes, Notes, Notes</strong><br />
If you build one page per day, you will find that brain storm like inspiration will hit you in the head at some magic point. Whether it is in the shower (dry off first), driving down the road (please pull over), or just parked at your desk, write it down! 10 minutes of work later, you will have forgotten all about that great idea you just had. Write it down, and get detailed about what you are thinking. When the inspirational juices are no longer flowing, come back to those content ideas. It sounds simple, but it&#8217;s a life saver when the ideas stop coming.</p>
<p><strong>Submission check at six months</strong><br />
Walk back through your submissions and see if you got listed in all the search engines you submitted to after six months. If not, then resubmit and forget again. Try those freebie directories again too.</p>
<p>Build one page of quality content per day.<br />
Starting to see a theme here? Google loves content, lots of quality content. Broad based over a wide range of keywords. At the end of a years time, you should have around 400 pages of content. That will get you good placement under a wide range of keywords, generate recip links, and overall position your site to stand on it&#8217;s own two feet.</p>
<p>Do those 26 things, and I guarantee you that in ones years time you will call your site a success. It will be drawing between 500 and 2000 referrals a day from search engines. If you build a good site with an average of 4 to 5 pages per user, you should be in the 10-15k page views per day range in one years time. What you do with that traffic is up to you, but that is more than enough to &#8220;do something&#8221; with.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seodubai.org/2008/04/14/seo-dubai-how-to-learn-search-engine-optimization/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome to the SEO Dubai Blog!</title>
		<link>http://www.seodubai.org/2007/11/13/welcome-to-the-seo-dubai-blog/</link>
		<comments>http://www.seodubai.org/2007/11/13/welcome-to-the-seo-dubai-blog/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 07:03:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SEO News]]></category>

		<category><![CDATA[seo dubai]]></category>

		<guid isPermaLink="false">http://www.seodubai.org/?p=3</guid>
		<description><![CDATA[Welcome to the SEO Dubai Blog!
I just wanted to tell you all how excited I am to be the moderator for this group. Right now we have a small group but I hope through the help of word of mouth, we hope to bring our community members up to massive numbers! SEO  and SEM [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to the SEO Dubai Blog!</p>
<p>I just wanted to tell you all how excited I am to be the moderator for this group. Right now we have a small group but I hope through the help of word of mouth, we hope to bring our community members up to massive numbers! SEO  and SEM can be highly addictive, and pair that with the advertising aspect of it (PPC, affiliate marketing, etc.), it can be highly PROFITABLE.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seodubai.org/2007/11/13/welcome-to-the-seo-dubai-blog/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
