<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Seoindepth&#039;s Blog</title>
	<atom:link href="http://seoindepth.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://seoindepth.wordpress.com</link>
	<description>Learn SEO from root up till the fruit</description>
	<lastBuildDate>Wed, 30 Dec 2009 08:53:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='seoindepth.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Seoindepth&#039;s Blog</title>
		<link>http://seoindepth.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://seoindepth.wordpress.com/osd.xml" title="Seoindepth&#039;s Blog" />
	<atom:link rel='hub' href='http://seoindepth.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Page Speed And Ranking</title>
		<link>http://seoindepth.wordpress.com/2009/12/30/page-speed-and-ranking/</link>
		<comments>http://seoindepth.wordpress.com/2009/12/30/page-speed-and-ranking/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 08:39:12 +0000</pubDate>
		<dc:creator>seoindepth</dc:creator>
				<category><![CDATA[Conceptual]]></category>

		<guid isPermaLink="false">http://seoindepth.wordpress.com/?p=29</guid>
		<description><![CDATA[The performance of a website on the internet is determined by many factors amongst which speed is the most important one. Now days, Google and other search giants are on a way to rank the website on the basis of their speeds. So, let us try to figure out the issues that we can fix [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seoindepth.wordpress.com&amp;blog=9382584&amp;post=29&amp;subd=seoindepth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The performance of a website on the internet is determined by many factors amongst which speed is the most important one. Now days, Google and other search giants are on a way to rank the website on the basis of their speeds. So, let us try to figure out the issues that we can fix from our end so that the speed of the website increases. We can optimize the CSS by shrinking it as well as reduce the size of the HTML and reduce server requests with sprites and suturing.</p>
<p>Optimizing and streamlining our web contents helps to increase the speed of display of all the elements.</p>
<p>To maximize the display speed we can do the following tasks:</p>
<ul>
<li>Minimize HTTP requests.</li>
<li>Resize and optimize images.</li>
<li>Optimize multimedia.</li>
<li>Convert JavaScript behavior      to CSS.</li>
<li>Use server-side sniffing.</li>
<li>Optimize JavaScript for      execution speed and file size.</li>
<li>Convert table layout to CSS      layout.</li>
<li>Replace inline style with CSS      rules.</li>
<li>Minimize initial display      time.</li>
<li>Load JavaScript wisely.</li>
</ul>
<p><strong>1</strong>. Some of the steps are mentioned in detail as follows:</p>
<p>Use container cells for descendant selectors:</p>
<pre><code>&lt;style&gt;</code>
<code>&lt;!--</code>
<code>    #nav ul, #nav ul li {list-style:none;}</code>
<code>    #nav ul li {font-weight:bold;}</code>
<code>--&gt;&lt;/style&gt;</code>
<code>...</code>
<code>&lt;div&gt;</code>
<code>    &lt;ul&gt;</code>
<code>        &lt;li&gt;Burma&lt;/li&gt;</code>
<code>        &lt;li&gt;Shave&lt;/li&gt;</code>
<code>    &lt;/ul&gt;</code>
<code>&lt;/div&gt;</code></pre>
<p>and the result:</p>
<ul>
<li>Burma</li>
<li>Shave</li>
</ul>
<p><strong> 2.</strong> Convert graphical text to CSS text to save HTTP requests. So this:</p>
<pre><code>&lt;div align="center"&gt;</code>
<code>&lt;img src="graphictext.gif" width="115" height="24" alt="graphic text example"&gt;</code>
<code>&lt;/div&gt;</code></pre>
<p>Becomes this:</p>
<pre><code>&lt;h1&gt;CSS Text&lt;/h1&gt;</code></pre>
<h1>CSS Text</h1>
<p><strong> 3.</strong> A common practice is to use spacer cells with a single-pixel GIF that is stretched to enforce the spacing distance. Here is an example from Nasa.gov:</p>
<pre><code>&lt;! -- Empty spacer row --&gt;</code>
<code>&lt;table&gt;&lt;tr&gt;</code>
<code>&lt;td colspan="2" width="223"&gt;&lt;img border="0" alt="" height="10" width="223" src="/</code>
<code>images/common/spacer.gif"&gt;&lt;/td&gt;</code>
<code>&lt;/tr&gt;</code></pre>
<p>Even rocket scientists can use some help with their HTML. A better way would be to use CSS to add spacing between cells:</p>
<pre><code>&lt;style&gt;&lt;!--</code>
<code>    .vmargin {margin-top:10px;} --&gt;&lt;/style&gt;&lt;/head&gt;&lt;body&gt;</code>
<code>&lt;table&gt;&lt;tr&gt;</code>
<code>&lt;td colspan="2" width="223"&gt;Content goes here&lt;/td&gt;</code>
<code>&lt;/tr&gt;</code></pre>
<p>Even better is to use relative &#8220;em&#8221; spacing to allow for changes in font size made by the user and div elements:</p>
<pre><code>&lt;style&gt;&lt;!--</code>
<code>    .vmargin {margin-top:1em;} --&gt;&lt;/style&gt;&lt;/head&gt;&lt;body&gt;</code>
<code>&lt;div&gt;Content goes here&lt;/div&gt;</code></pre>
<p><strong>4.</strong> You can reduce the number of HTTP requests that your pages require by combining adjacent images into one composite image and mapping any links using an image map. Instead of multiple HTTP requests, this technique requires only one.</p>
<p><strong> 5. </strong>By minimizing the HTTP request load, you can maximize the initial display speed of your content. So, this:</p>
<pre><code>&lt;link rel="stylesheet" href="/css/fonts.css" /&gt;</code>
<code>&lt;link rel="stylesheet" href="/css/nav.css" /&gt;</code>
<code>&lt;script src="/js/functions.js"&gt;&lt;/script&gt;</code>
<code>&lt;script src="/js/validation.js"&gt;&lt;/script&gt;</code></pre>
<p>becomes this, by combining the CSS files into one file and the JavaScript files into one file:</p>
<pre><code>&lt;link rel="stylesheet" href="/css/combined.css" /&gt;</code>
<code>&lt;script src="/js/combined.js"&gt;&lt;/script&gt;</code></pre>
<p><strong> 6. Cache Dynamic Files</strong></p>
<pre><code>header('Cache-control: must-revalidate');</code>
<code>header('Expires: ' . gmdate('D, d M Y H:i:s', time( ) + 10800) . ' GMT');</code></pre>
<p><strong> 7. Eliminate JavaScript Includes:</strong></p>
<p>For advertising, you can eliminate the extra HTTP requests required by the preceding methods by using a server-side include-based ad delivery system such as 24/7 Real Media&#8217;s Open AdStream</p>
<p><strong>8. </strong>This technique uses server-side includes (SSIs) to include the banner ad directly into the page, saving an HTTP request.</p>
<p><strong><em>Thesis Report of a Web Researcher:</em></strong></p>
<p><strong><em><a rel="nofollow" href="http://www.websiteoptimization.com/speed/tweak/web-page-performance-thesis/">Reference: http://www.websiteoptimization.com/speed/tweak/web-page-performance-thesis/</a></em></strong></p>
<p><strong>Web Page Performance Vs. Server Performance</strong></p>
<p>Unlike most research into web performance that deals with server and network issues, Chiew&#8217;s thesis focused on the performance analysis of web pages themselves. The key metric with web pages is response time. Instead of being the result of server and network conditions, Chiew treats response time as an attribute of web pages. To address response time, Chiew proposes a framework of measurement, modeling, and monitoring. These &#8220;3Ms&#8221; were addressed with corresponding software modules. Using this framework, web developers can assess that web pages can meet or reduce tolerable wait times to ensure higher user satisfaction with web sites.</p>
<p>The thesis tests the following hypothesis:</p>
<ol>
<li>The response time of      downloading a Web page can be decomposed into its constituent components.</li>
<li>The particular Web page response      time will be affected by identifiable characteristics of the Web pages.</li>
<li>It is possible to provide      recommendations for resolving or relieving some of the identified      performance problems that may cause poor response time based on the      identified characteristics that affect Web page response time.</li>
</ol>
<p><strong> </strong></p>
<p><strong> </strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seoindepth.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seoindepth.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seoindepth.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seoindepth.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seoindepth.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seoindepth.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seoindepth.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seoindepth.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seoindepth.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seoindepth.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seoindepth.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seoindepth.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seoindepth.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seoindepth.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seoindepth.wordpress.com&amp;blog=9382584&amp;post=29&amp;subd=seoindepth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seoindepth.wordpress.com/2009/12/30/page-speed-and-ranking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4999b4d4281d14d7ba7aa8818d0c47c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">seoindepth</media:title>
		</media:content>
	</item>
		<item>
		<title>Why and How to optimize blogs?</title>
		<link>http://seoindepth.wordpress.com/2009/12/03/why-and-how-to-optimize-blogs/</link>
		<comments>http://seoindepth.wordpress.com/2009/12/03/why-and-how-to-optimize-blogs/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 12:42:43 +0000</pubDate>
		<dc:creator>seoindepth</dc:creator>
				<category><![CDATA[Conceptual]]></category>

		<guid isPermaLink="false">http://seoindepth.wordpress.com/?p=26</guid>
		<description><![CDATA[Need for optimizing a blog: According to a survey, it is proved that nearly 75,000 new blogs are newly created daily on the internet. With such a huge number of blogs as our counterpart, it is very difficult to maintain the pace of competition by just posting or by just adding content. To be alive [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seoindepth.wordpress.com&amp;blog=9382584&amp;post=26&amp;subd=seoindepth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Need for optimizing a blog:</strong></p>
<p>According to a survey, it is proved that nearly 75,000 new blogs are newly created daily on the internet. With such a huge number of blogs as our counterpart, it is very difficult to maintain the pace of competition by just posting or by just adding content. To be alive in the competition it is highly recommendable that we have to use all the tricks and tactics to bring our blogs in the notice of the readers. To achieve this goal, we have an easy solution with us, yes it is the optimization technique that can help us. Herein comes the SEO in focus.</p>
<p>Optimizing the blog will surely help you to increase the traffic as well as improve the ranking in the regular search as well as the blog / RSS search.</p>
<p>Optimizing a blog is not that difficult as like as a website, that is because the blogging sites are good content management systems having a good scope for optimization for example say that we can use many readily available plugins as well as the tools.</p>
<p><strong> </strong></p>
<p><strong>Process Of Optimization</strong></p>
<p>Start it by selecting a proper template. Some templates just blocks the search engines, so in these case you have to check all the flaws of the template.</p>
<ul>
<li><strong>Keywords</strong>: Make a good research for      using the best keywords. Keep users as well as search engine in point of      view. Many automated tools are available, which gives a good list of      keywords.</li>
<li>Use your primary keyword in your <strong>blog      domain</strong></li>
<li>Use your primary key phrase in your <strong>blog      header tags</strong> and the title of your posts</li>
<li>Use your secondary keywords in the <strong>body      of your post</strong></li>
<li>Use your keywords in the <strong>anchor text      of links</strong></li>
<li>Make sure search engines can <strong>spider      your blog</strong> easily</li>
<li>Get backlinks from other blogs or      websites</li>
<li><strong>Density</strong>: Try to study the density      of different search engines, as they vary a lot. If you want to focus      yahoo then the density can vary from 9-11%.For google its little lower may      be 3-5%. If you try to violate the specified densities to the search      engines then you can be either not ranked in the SERP’s or also can be      counted as a spamming member.</li>
<li><strong>Proximity</strong>: Keep it genuine as per      the search engine in focus.</li>
<li><strong>Meta</strong>:      These are given high preference by some search engines and given less      priority by the others. So use it properly without much stuffing.</li>
<li><strong>RSS feeds: </strong>Try to provide buttons      for subscribing the feeds easily<strong> </strong></li>
<li>Try to provide the posts <strong>via emails.</strong></li>
<li>Develop a good look and feel  by using <strong>proper color theme</strong> that suits the niche of the blog</li>
<li>Try to compel the users to read the further posts by <strong>using snippets</strong>. These is good because  the readers feels the eagerness when there is a cliff hanger.</li>
<li><strong>Use good categories</strong></li>
<li>URL structure plays a vital role in SEO, so optimize them by putting proper keywords</li>
<li><strong>Buying a domain: </strong>Our own domain will always be good.<strong> </strong></li>
<li><strong>Use Pinging: </strong> Try to ping other sites as soon as you make a post<strong></strong></li>
<li>Try to link the source of information.</li>
<li>Also optimize the images, without stuffing the alt tags</li>
<li>Submitting to Blog Search Engines and Directories</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seoindepth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seoindepth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seoindepth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seoindepth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seoindepth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seoindepth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seoindepth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seoindepth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seoindepth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seoindepth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seoindepth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seoindepth.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seoindepth.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seoindepth.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seoindepth.wordpress.com&amp;blog=9382584&amp;post=26&amp;subd=seoindepth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seoindepth.wordpress.com/2009/12/03/why-and-how-to-optimize-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4999b4d4281d14d7ba7aa8818d0c47c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">seoindepth</media:title>
		</media:content>
	</item>
		<item>
		<title>Some Common Blogging Terms</title>
		<link>http://seoindepth.wordpress.com/2009/12/03/some-common-blogging-terms/</link>
		<comments>http://seoindepth.wordpress.com/2009/12/03/some-common-blogging-terms/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 10:39:20 +0000</pubDate>
		<dc:creator>seoindepth</dc:creator>
				<category><![CDATA[Conceptual]]></category>

		<guid isPermaLink="false">http://seoindepth.wordpress.com/?p=23</guid>
		<description><![CDATA[Let us have a look at some common terms generally used in the field of blogging. Many of us are unaware of these terms. Being a SEO, it is very necessary to have at least some ideas of these terms: Atom : Feed of any post. Same as RSS Auto casting : It is an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seoindepth.wordpress.com&amp;blog=9382584&amp;post=23&amp;subd=seoindepth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://seoindepth.files.wordpress.com/2009/12/blog-img.png"><img class="alignright size-full wp-image-24" style="border:1px solid black;margin:10px;" title="blog-img" src="http://seoindepth.files.wordpress.com/2009/12/blog-img.png?w=500" alt="blogging terms"   /></a>Let us have a look at some common terms generally used in the field of blogging. Many of us are unaware of these terms. Being a SEO, it is very necessary to have at least some ideas of these terms:</p>
<ul>
<li><strong>Atom : </strong>Feed of any post. Same as RSS</li>
</ul>
<ul>
<li><strong>Auto casting : </strong>It is an automated form of pod casting that allows readers to generate audio versions of text blogs from RSS</li>
</ul>
<ul>
<li><strong>Audioblog : </strong>Here the posts are made up of voice recordings which also includes some text used for metadata</li>
</ul>
<ul>
<li><strong>Blawg : </strong>Its a law blog.</li>
</ul>
<ul>
<li><strong>Blog Carnival : </strong>It’s a blog that contains links to other articles covering the same topic</li>
</ul>
<ul>
<li><strong>Blog Client : </strong>It’s a software used to manage the post as well as edit them directly from Operating System which don’t need a browser.</li>
</ul>
<ul>
<li><strong>Blogger : </strong>The owner of the blog or one who runs a blog</li>
</ul>
<ul>
<li><strong>Bloggies : </strong>It’s a famous award given for blogging</li>
</ul>
<ul>
<li><strong>Blogroll : </strong>It’s a list of recommended sites generally present in the sidebar</li>
</ul>
<ul>
<li><strong>Blogware : </strong>Many softwares used as content management system used for creating and maintaining  the blogs</li>
</ul>
<ul>
<li><strong>The BOS s : </strong>Largest International blog awards</li>
</ul>
<ul>
<li><strong>Collaborative blog : </strong>Blog focused on a single issue where multiple users enjoy posting permission. It is also known as group blog.</li>
</ul>
<ul>
<li><strong>Comment spam : </strong>Advertising in the comment section using html link tags.</li>
</ul>
<ul>
<li><strong>Desk Top Blogging Client : </strong>Its off-line blog management tool</li>
</ul>
<ul>
<li><strong>Flog : I</strong>t’s a combination of “fake” and “blog”. i.e. we don’t know the writer of the blog.</li>
</ul>
<ul>
<li><strong>J-blog : </strong>It’s a journalist blog or also a blog with jewish focus</li>
</ul>
<ul>
<li><strong>Milblog : </strong>It’s a military blog i.e. written the members or military service.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seoindepth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seoindepth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seoindepth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seoindepth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seoindepth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seoindepth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seoindepth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seoindepth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seoindepth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seoindepth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seoindepth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seoindepth.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seoindepth.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seoindepth.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seoindepth.wordpress.com&amp;blog=9382584&amp;post=23&amp;subd=seoindepth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seoindepth.wordpress.com/2009/12/03/some-common-blogging-terms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4999b4d4281d14d7ba7aa8818d0c47c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">seoindepth</media:title>
		</media:content>

		<media:content url="http://seoindepth.files.wordpress.com/2009/12/blog-img.png" medium="image">
			<media:title type="html">blog-img</media:title>
		</media:content>
	</item>
		<item>
		<title>Good Blogging Techniques</title>
		<link>http://seoindepth.wordpress.com/2009/12/02/good-blogging-techniques/</link>
		<comments>http://seoindepth.wordpress.com/2009/12/02/good-blogging-techniques/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 12:59:26 +0000</pubDate>
		<dc:creator>seoindepth</dc:creator>
				<category><![CDATA[Conceptual]]></category>

		<guid isPermaLink="false">http://seoindepth.wordpress.com/?p=15</guid>
		<description><![CDATA[The language used in blogging must be kept very simple. It must be written just like we write an email. Say for example we are writing a mail to our mom, the way that we will start will be something like, “hi mom, today I discovered a new technique to improve the hair loss problem.” [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seoindepth.wordpress.com&amp;blog=9382584&amp;post=15&amp;subd=seoindepth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://seoindepth.files.wordpress.com/2009/12/more-of-blogs2.jpg"><img class="alignleft size-medium wp-image-18" style="margin:10px;" title="blog" src="http://seoindepth.files.wordpress.com/2009/12/more-of-blogs2.jpg?w=300&#038;h=221" alt="" width="300" height="221" /></a>The language used in blogging must be kept very simple. It must be written just like we write an email. Say for example we are writing a mail to our mom, the way that we will start will be something like, “hi mom, today I discovered a new technique to improve the hair loss problem.” After these removing the salutation will give you a good punch line to start the discussion. Just follow such lucid language.</p>
<ul>
<li> <strong>Using news</strong>: If you are going to start a blog related to any company or any typical field, then try to collect a good news related to that issue. Spend half of your blog summarizing the aspects in that news and then remaining part is left for your opinion regarding that news, what all changes must be there and what you feel. You must not forget to cite a link to the news site so as to increase the trust of the information.</li>
<li><strong>People love listening stories</strong>: Try to expose your ideas in the format of story rather then in a simple tips version.</li>
<li><strong>Create a list of ideas</strong> you have in your mind. Try to present it in some hierarchical format because people love lists as they are prone to it. List helps us to be focused on the issue and we can also keep the issues out which we don’t want to discuss.</li>
<li><strong>Know your topic</strong>: Start a topic which you know or which you can easily explain because you are trying to help others on that topic and if you yourself are ignorant about the depths of the topic then the reader can easily point it out.</li>
<li><strong>Give credit</strong>: If you are using ideas of some one else’s blog or post then don’t forget to link that blog which will help to maintain the genuineness of the information.</li>
<li><strong>Length doesn’t matter</strong>: If your ideas related any topic are not very long then keep it as it is and unnecessary don’t try to make it long by just putting any irrelevant data. People always prefer short but proper rather then long and improper.</li>
<li><strong>Keep search engine in mind</strong>: If your blog is not indexed then it wont create an impression on the readers, so try to optimize it using the SEO technique in a spam free way and aloof of keyword stuffing. Provide links wherever needed is a good technique.</li>
</ul>
<p><strong>How to select a topic for blog posting for today:</strong></p>
<ul>
<li> Try to figure out the hottest trend in the market: In recent few years twitter has flourished a lot so many of the public are using it. You try to figure out any topic from it and start your flow of information.</li>
</ul>
<ul>
<li> Ask the audience: Suppose you are a part of any community say like on twitter then always try to ask your followers or friends that what do they want to read. Thus, you can directly notify them that you have prepared a write up of their choice which can provide you potential readers thus increasing your blog’s familiarity.</li>
</ul>
<ul>
<li> Stand on strong shoulder: Keep a watch on the best bloggers online and study their blogs, if you find anything interesting or fancy in it then create an opinion blog for that topic. It will give you a good boost.</li>
</ul>
<p style="text-align:center;"><a href="http://seoindepth.files.wordpress.com/2009/12/blog1.jpg"><img class="size-medium wp-image-20 aligncenter" title="Blog" src="http://seoindepth.files.wordpress.com/2009/12/blog1.jpg?w=300&#038;h=221" alt="Blog" width="300" height="221" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seoindepth.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seoindepth.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seoindepth.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seoindepth.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seoindepth.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seoindepth.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seoindepth.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seoindepth.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seoindepth.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seoindepth.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seoindepth.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seoindepth.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seoindepth.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seoindepth.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seoindepth.wordpress.com&amp;blog=9382584&amp;post=15&amp;subd=seoindepth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seoindepth.wordpress.com/2009/12/02/good-blogging-techniques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4999b4d4281d14d7ba7aa8818d0c47c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">seoindepth</media:title>
		</media:content>

		<media:content url="http://seoindepth.files.wordpress.com/2009/12/more-of-blogs2.jpg?w=300" medium="image">
			<media:title type="html">blog</media:title>
		</media:content>

		<media:content url="http://seoindepth.files.wordpress.com/2009/12/blog1.jpg?w=300" medium="image">
			<media:title type="html">Blog</media:title>
		</media:content>
	</item>
		<item>
		<title>URL Redirects</title>
		<link>http://seoindepth.wordpress.com/2009/09/09/url-redirects/</link>
		<comments>http://seoindepth.wordpress.com/2009/09/09/url-redirects/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 13:29:29 +0000</pubDate>
		<dc:creator>seoindepth</dc:creator>
				<category><![CDATA[Conceptual]]></category>

		<guid isPermaLink="false">http://seoindepth.wordpress.com/?p=3</guid>
		<description><![CDATA[While driving on the road many  may have faced a road diversion which is done due to some improper functioning or due any such reason.Same is the case with  URLs.Whenever there are some flaws in the working of any site or any changes are to be applied then the use of redirects is beign done. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seoindepth.wordpress.com&amp;blog=9382584&amp;post=3&amp;subd=seoindepth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;">
<p style="text-align:center;"><img class="aligncenter" title="seoURLredirection" src="../files/2009/09/301redirect.gif" alt="seoURLredirection" width="240" height="267" /></p>
<p>While driving on the road many  may have faced a road diversion which is done due to some improper functioning or due any such reason.Same is the case with  URLs.Whenever there are some flaws in the working of any site or any changes are to be applied then the use of redirects is beign done.</p>
<p>These was  just a generalized scenario.Being a SEO or a good netizen you all must be familiar with the technical aspects of the redirection.</p>
<p><strong>Issues that urges the need of redirects</strong></p>
<ul>
<li>The first reason is the necessity of the owner of a website to show the domain where he has moved his pages.</li>
<li>The other reason is just when there are collaboration between the websites.Here,it is necessary to route the users of both the merging sites to a specific new location or URL which has the merging effect of both the sites.</li>
<li>Whenever any domain is renamed then it is necessary to notify the users.But, if the users are unaware then it is good to redirect them directly which can be even not recognized by the user.</li>
</ul>
<p><strong>Reasons why we do re-directs</strong></p>
<ul>
<li>Nowadays world is being flown towards nano technology i.e every thing is becoming smaller and smaller.The consequences of such technology will one day make it possible to carry your entire planet in a brief case.How funny,isnt it?But it can be true.The reason to mention it here is that,one of such reason is a result of redirection i.e <em>to get a shorter URL instead of a longer.</em>In the field of internet it is recommended to have a shorter URL.Such option is provided by URL redirects.</li>
<li>It is also used as a <em>replacement for changing URLs</em>.For some websites which are free to be edited,it happens that the content remains same but the url can be changed.Here, the problem is faced by such users who have bookmarked those urls.To overcome these problem,url redirects is used.</li>
<li>One use of it is for black hat purpose i.e using 302,it can be used to steal page ranks.Usually it was possible some time ago but nowadays the search engine providers have over come such issues by just penalizing the sites using these technique.Cloaking is also done using the redirects.</li>
<li style="text-align:left;">The redirects are also used for fooling the users and making them feel of the site they wished to visit but in reality it is not the one they intended.Thus, giving rise to phishing.</li>
</ul>
<p><strong>How to implement redirection?</strong></p>
<p>There are many ways to obtain the task of redirection.The most popular and oldest one is to refresh meta tags.However, nowadays many other advance techniques are used.Let us have a look at them.</p>
<ul>
<li><strong>Simple redirect</strong></li>
</ul>
<p>These<strong> </strong>technique<strong> </strong>is used as an option for those browsers who do not support the automatic redirects.Here the user can reach the destination by just following the link given in the anchor tag.Let us check how does it look like?</p>
<p><em>Visit</em>:&lt;a href=&#8221;http://seoindepth.wordpress.com&#8221;&gt;Your Best Guide In SEO&lt;/a&gt;</p>
<ul>
<li><strong>Using HTTP status codes</strong></li>
</ul>
<p>The client must take additional action to complete the request.This class of status code indicates that further action needs to be taken by the user agent in order to fulfill the request. The action required may be carried out by the user agent without interaction with the user if and only if the method used in the second request is GET or HEAD. A user agent<em> </em>should not automatically redirect a request more than five times, since such re-directions usually indicate an infinite loop.</p>
<p><strong>300 &#8211; Different Options</strong></p>
<p>It mentions that the user can have any option out of the many available.For example different extensions of a file,different languages  etc.</p>
<p><strong>301 &#8211; Permanently moved</strong></p>
<p>These technique is used to show a change of location i.e if the domain has changed then we can redirect the old domain to the new one.It is also used to resolve the formation of canonical issues i.e by taking different combination of our  url like with www,without www,different cases all these can be solved by just redirecting to a proper url of out site.</p>
<p><strong>Different ways to implement 301 redirect</strong></p>
<ul>
<li>Use .htaccess for redirection:</li>
</ul>
<p>If we use Apache server,the .htaccess files are used for redirection.The coding is done in Apache config files or the .htaccess file.Lets have a quick look at the types of the .htaccess pages.</p>
<ol>
<li><em>.htaccess for Static pages</em> :</li>
</ol>
<p>Here,we have to code within the .htaccess file by downloading it to our root directory,make the changes and again reload it.</p>
<p>2.  <em>.htaccess for Dynamic pages</em>:</p>
<p>For dynamic pages we need the id fo the page that i sbeing used along with the url.</p>
<ul>
<li>Refresh meta tag &amp; HTTP refresh header:</li>
</ul>
<p>Its a feature introduced by netscape.It specifies the url of the new page which is replaces the old one after some defined period of time.Here we need to specify the time out i.e the interval after which the url has to be changed.If the timeout is 0,it is said to be 301.</p>
<p>Here ,the code is placed in the head tag of HTML file.But,these method is considered as a poor technique by the W3C standard because it doesn&#8217;t  communicate any information about the original &amp; new source to the browser and W3C never prefers auto-refreshing pages as many browsers doesn&#8217;t support it.</p>
<ul>
<li>Java scripts redirects:</li>
</ul>
<p>As many browser doesn&#8217;t support java as well as due to security resons it is not very prominent.</p>
<ul>
<li>Cold fusion redirect:</li>
<li>Frame redirects:</li>
</ul>
<p>Here,a HTML frame is created which has the url of the target page.Here,the address of the frame document appears as the url and not of the target page.Usually ,it is used as a cloaking method i.e a black hat technique.</p>
<ul>
<li>Redirect Loops:</li>
</ul>
<p>Here,multiple redirects are being used for a single domain, say for example www.abc.com(improper) is redirected to www.abc.org(proper) then it is further redirected to en.abc.org.It is called as loops of redirect.The maximum limit for such redirects is 5.</p>
<p><strong><br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seoindepth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seoindepth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seoindepth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seoindepth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seoindepth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seoindepth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seoindepth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seoindepth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seoindepth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seoindepth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seoindepth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seoindepth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seoindepth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seoindepth.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seoindepth.wordpress.com&amp;blog=9382584&amp;post=3&amp;subd=seoindepth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://seoindepth.wordpress.com/2009/09/09/url-redirects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4999b4d4281d14d7ba7aa8818d0c47c9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">seoindepth</media:title>
		</media:content>
	</item>
	</channel>
</rss>
