<?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>Php Development &#187; seo</title>
	<atom:link href="http://www.maheshchari.com/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maheshchari.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 23 May 2010 05:10:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>htaccess custom error documents</title>
		<link>http://www.maheshchari.com/htaccess-custom-error-documents/</link>
		<comments>http://www.maheshchari.com/htaccess-custom-error-documents/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 16:30:27 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[seo]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=472</guid>
		<description><![CDATA[htaccess custom error documents
The htaccess gives you the ability to redirect the visitor to different pages if they try to access an invalid page. You can use a custom error page for any type of error as long as you know its number. using custom error page helps lot to increase the performence in Search [...]]]></description>
			<content:encoded><![CDATA[<h1>htaccess custom error documents</h1>
<p>The <strong>htaccess</strong> gives you the ability to redirect the visitor to different pages if they try to access an invalid page. You can use a <strong>custom error</strong> page for any type of <strong>error</strong> as long as you know its number. using custom error page helps lot to increase the performence in Search Engine Optimizaton.</p>
<p>To know detailed http <strong>error codes</strong> refer to <a href="http://www.maheshchari.com/http-protocol-codes/" target="_blank">my previous post</a>.to work out this you need to add these htaccess command to your httaccess file and include in your server root folder.</p>
<p>To know how to user htaccess file please refere to<a href="http://www.maheshchari.com/enable-htaccess-apache/" target="_blank"> my previouse post</a>.</p>
<p>Example: <strong>404 Page Not Found.</strong> The layout for this command is :</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">ErrorDocument errornumber /filename.html</pre></div></div>

<p>So if you create a page called <strong>NotFound.html</strong> and you wanted to use it as the <strong>404 error page</strong>, the command would be :</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">ErrorDocument 404 /NotFound.html</pre></div></div>

<p>If you want to keep all of the error pages in a separate directory, just include the directory name in the file path :</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">ErrorDocument 404 /errorpages/NotFound.html</pre></div></div>

<p>
The most used error documents are :</p>
<p><strong>400	Bad Request</strong> A generic kind of error that people get into by doing some strange stuff with your URL or scripts.  </p>
<p><strong>401	Authorization Required</strong>	When someone tries to enter a protected area without proper authorization.</p>
<p> <strong>403	Forbidden </strong>When a file with permissions not allowing it to be accessed by the user is requested.  </p>
<p><strong>404	Not Found</strong>	Kinda obvious.  </p>
<p><strong>500	Internal Server Error</strong>	This may help you with internal server errors in any scripts you have running.</p>
<p>There are many others, To view complete http error code see <a href="http://www.maheshchari.com/http-protocol-codes/" target="_blank">my previous post</a>.</p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=472&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/htaccess-custom-error-documents/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>http protocol codes</title>
		<link>http://www.maheshchari.com/http-protocol-codes/</link>
		<comments>http://www.maheshchari.com/http-protocol-codes/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 16:42:27 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[seo]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=468</guid>
		<description><![CDATA[Http protocol  error and response code reference.
we know that web servers and web client uses mostly common protocol is HTTP, we need use response codes  in our application . So i made a simple and breif reference below
Successful Client Requests
200  	OK
201 	Created
202 	Accepted
203 	Non-Authorative Information
204 	No Content
205 	Reset Content
206 	Partial Content
Client Request [...]]]></description>
			<content:encoded><![CDATA[<h1>Http protocol  error and response code reference.</h1>
<p>we know that web servers and web client uses mostly common protocol is HTTP, we need use response codes  in our application . So i made a simple and breif reference below</p>
<h3>Successful Client Requests</h3>
<p>200  	OK<br />
201 	Created<br />
202 	Accepted<br />
203 	Non-Authorative Information<br />
204 	No Content<br />
205 	Reset Content<br />
206 	Partial Content</p>
<h3>Client Request Redirected</h3>
<p>300 	Multiple Choices<br />
301 	Moved Permanently<br />
302 	Moved Temporarily<br />
303 	See Other<br />
304 	Not Modified<br />
305 	Use Proxy</p>
<h3>Client Request Errors</h3>
<p>400 	Bad Request<br />
401 	Authorization Required<br />
402 	Payment Required (not used yet)<br />
403 	Forbidden<br />
404 	Not Found<br />
405 	Method Not Allowed<br />
406 	Not Acceptable (encoding)<br />
407 	Proxy Authentication Required<br />
408 	Request Timed Out<br />
409 	Conflicting Request<br />
410 	Gone<br />
411 	Content Length Required<br />
412 	Precondition Failed<br />
413 	Request Entity Too Long<br />
414 	Request URI Too Long<br />
415 	Unsupported Media Type</p>
<h3>Server Errors</h3>
<p>500 	Internal Server Error<br />
501 	Not Implemented<br />
502 	Bad Gateway<br />
503 	Service Unavailable<br />
504 	Gateway Timeout<br />
505 	HTTP Version Not Supported </p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=468&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/http-protocol-codes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to check weather mod_rewrite module is enabled</title>
		<link>http://www.maheshchari.com/how-to-check-weather-mod_rewrite-module-is-enabled/</link>
		<comments>http://www.maheshchari.com/how-to-check-weather-mod_rewrite-module-is-enabled/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 09:52:49 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=440</guid>
		<description><![CDATA[How to check weather mod_rewrite module is enabled or not?
We know the impotence of the Search Engine Friendly URLs . To make an application SEF preferable we must have .htaccess permissions and mod_rewrite module enabled.
Here we discuss if apache web server mod_rewrite module enabled or not.
Step1: Open your note pad and pate below code in [...]]]></description>
			<content:encoded><![CDATA[<h1>How to check weather mod_rewrite module is enabled or not?</h1>
<p>We know the impotence of the Search Engine Friendly URLs . To make an application SEF preferable we must have <a href="http://www.maheshchari.com/enable-htaccess-apache/">.htaccess permissions</a> and <a href="http://www.maheshchari.com/enable-mod_rewrite-on-apache/">mod_rewrite module enabled</a>.</p>
<p>Here we discuss if apache web server mod_rewrite module enabled or not.</p>
<p><b>Step1:</b> Open your note pad and pate below code in it and Save as phpinfo.php.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">phpinfo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

</p>
<p><b>Step2:</b> Now preview this page and find the &#8220;mod_rewrite&#8221; in the column of &#8220;Loaded modules&#8221;.<br />
<a href="http://www.maheshchari.com/wp-content/uploads/2010/03/mod_rewrite.gif"><img src="http://www.maheshchari.com/wp-content/uploads/2010/03/mod_rewrite-300x186.gif" alt="" title="mod_rewrite" width="300" height="186" class="alignlcenter size-medium wp-image-441" /></a></p>
<p><b>Step3:</b> If we found this we enabled mod_rewrite module.</p>
<p><b>Step4:</b>if we didn&#8217;t found ,we can enable it by reading my <a href="http://www.maheshchari.com/enable-mod_rewrite-on-apache/"> previous article</a>.</p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=440&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/how-to-check-weather-mod_rewrite-module-is-enabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable mod_rewrite on apache</title>
		<link>http://www.maheshchari.com/enable-mod_rewrite-on-apache/</link>
		<comments>http://www.maheshchari.com/enable-mod_rewrite-on-apache/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 09:21:09 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=438</guid>
		<description><![CDATA[How to enable mode_rewrite module on apache
Before enabling this module for SEF URL s ,we must have permission to use .htaccess file .Please read my previous post to enable .htacess.
Before beginning this article ,please back up your apache configuration file httpd.conf file located in apache installation.
Now open with note pad this configuration file and find [...]]]></description>
			<content:encoded><![CDATA[<h1>How to enable mode_rewrite module on apache</h1>
<p>Before enabling this module for SEF URL s ,we must have permission to use .htaccess file .Please read my <a href="http://www.maheshchari.com/enable-htaccess-apache/" target="_blank">previous post</a> to enable <b>.htacess</b>.</p>
<p>Before beginning this article ,please back up your apache configuration file httpd.conf file located in apache installation.</p>
<p>Now open with note pad this configuration file and find the below the lin</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">#LoadModule rewrite_module modules/mod_rewrite.so</pre></div></div>

<p>Now remove the &#8220;#&#8221; symbol in the above line,results modified looks below</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">LoadModule rewrite_module modules/mod_rewrite.so</pre></div></div>

<p>Now Save the file and restart the apache now mod_rewrite module is enabled.</p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=438&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/enable-mod_rewrite-on-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>enable htaccess apache</title>
		<link>http://www.maheshchari.com/enable-htaccess-apache/</link>
		<comments>http://www.maheshchari.com/enable-htaccess-apache/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 08:51:17 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=431</guid>
		<description><![CDATA[Enable htacces for directories
we know that htaccess permission must on apache web server like making SEF urls, directory permissions..etc.here we discuss about how to check .htaccess enabled.
Before we begin this tutorial, please make sure you make a backup copy of the original httpd.conf apache configuration  file located in apache installation folder  in case [...]]]></description>
			<content:encoded><![CDATA[<h1>Enable htacces for directories</h1>
<p>we know that htaccess permission must on apache web server like making SEF urls, directory permissions..etc.here we discuss about how to check .htaccess enabled.</p>
<p>Before we begin this tutorial, please make sure you make a backup copy of the original <b>httpd.conf</b> apache configuration  file located in apache installation folder  in case we make a mistake, this way we can always go back to the original configuration file </p>
<p>Now open
<p>httpd.conf</p>
<p> file with note pad and find the below text</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">&lt;Directory /&gt;
    Options FollowSymLinks
    AllowOverride none
    Order deny,allow
    Deny from all
    Satisfy all
&lt;/Directory&gt;</pre></div></div>

<p>Then replace <b>AllowOverride none</b> to <b>AllowOverride All</b>. Modified version looks as below</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">&lt;Directory /&gt;
    Options FollowSymLinks
    AllowOverride all
    Order deny,allow
    Deny from all
    Satisfy all
&lt;/Directory&gt;</pre></div></div>

<p>Above change tells the apache to use .htaccess as per directory bases.<br />
Now we can use .htaccess files .</p>
<p><h3>Remember</h3>
<p>Remember while uploading .htaccess file to remote server make sure the file transfer in ASCII mode, generally with windows operating  system FTP programs use binary mode.</p>
<p>Generally FTP programs doesn&#8217;t display the .htaccess files by default ,we must force the FTP program to show hidden files like .htaccess files.</p>
<p>When you save <b>.htaccess</b> file with note pad  it saves as <b>.htaccess.txt</b> .Make sure <b>.htaccess</b> is a file extension not a file name with empty name.</p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=431&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/enable-htaccess-apache/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to host multiple domains in a single hosting package</title>
		<link>http://www.maheshchari.com/how-to-host-multiple-domains-in-a-single-hosting-package/</link>
		<comments>http://www.maheshchari.com/how-to-host-multiple-domains-in-a-single-hosting-package/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 17:29:07 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[seo]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=399</guid>
		<description><![CDATA[How to host multiple domains in a single hosting package.
In our real time,we work mostly small websites where limited static files are hosted. So in that case we waste additional money for less than a Mb files. Here we learn simple hack how to add multiple sites to single account using single .htaccess file.
For example, [...]]]></description>
			<content:encoded><![CDATA[<h1>How to host multiple domains in a single hosting package.</h1>
<p>In our real time,we work mostly small websites where limited static files are hosted. So in that case we waste additional money for less than a Mb files. Here we learn simple hack how to add multiple sites to single account using single .htaccess file.</p>
<p>For example, if you are hosting your domain name &quot;<strong>maheshchari.com</strong>&quot; with us and added a Domain Alias for &quot;<strong>mahesh.com</strong>&quot;, then <strong>http://www.maheshchari.com</strong> and <strong>http://www.mahesh.com</strong> would take a visitor to the exact same pages of  <strong>maheshchari.com</strong> website. <strong>http://maheshchari.com/somefile.html </strong>would bring someone to the exact same page as <strong>http://mahesh.com/somefile.html</strong>. 
</p>
<p>Using this method, you can host an additional website within your account for each Domain  you add. Or you can point the <strong>mahesh.com</strong> same as <strong>maheshchari.com</strong>,So you are adding &quot;<strong>A</strong>&quot; same for both domains in DNS management . </p>
<p>After that This is a custom configuration requiring a couple extra steps. </p>
<p>After Pointing both domain to same Server IP , then place an .htaccess file in /htdocs/www of the following example format: </p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">RewriteEngine On
RewriteCond %{HTTP_HOST}  mahesh.com$ [NC]
RewriteCond %{REQUEST_URI} !^/mahesh/.*$
RewriteRule ^(.*)$  /mahesh/$1</pre></div></div>

<p>Then, upload your HTML files maheshchari.com to <strong>/htdocs/www/</strong> and your HTML files for <strong>mahesh.com</strong> to <strong>/htdocs/www/mahesh </strong></p>
<p>Remeber you can&#8217;t add emails for <strong>mahesh.com</strong> for that .</p>
<p>&nbsp;</p>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=399&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/how-to-host-multiple-domains-in-a-single-hosting-package/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>long url vs short url</title>
		<link>http://www.maheshchari.com/long-url-vs-short-url/</link>
		<comments>http://www.maheshchari.com/long-url-vs-short-url/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 23:59:21 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[PHP/mysql]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=265</guid>
		<description><![CDATA[Long URL Vs Short URL
We know the fact that present content available in the  internet is from web applications not web site!   We see many advanced Server side scripts like PHP, Perl, and Java etc.  that generates most of the dynamic content on the web. 
  For example http://www.wikipedia.org/ is a [...]]]></description>
			<content:encoded><![CDATA[<h1>Long URL Vs Short URL</h1>
<p>We know the fact that present content available in the  internet is from web applications not web site!   We see many advanced Server side scripts like PHP, Perl, and Java etc.  that generates most of the dynamic content on the web. <br />
  For example <a href="http://www.wikipedia.org/">http://www.wikipedia.org/</a> is a largest data collection or knowledge base. This data can be found through <a href="http://en.wikipedia.org/wiki/Uniform_Resource_Locator" target="_blank" rel="nofollow">URL</a> on the  web. So URL is the key point to dynamic content. Generally we do this with a  dynamic parameters append to URL and fetch the data from the server according  to parameter. We can also use it for short time, like user activation, forgot  password, reset password. So we have some information about URL.</p>
<p>Here we discuss about the length of the URL of the web site.  As web developer we ensure that our web application work in all web browsers,  all plat forms and all server. Off course it is difficult to ensure it, but we  work at least an environment like lowest version of the browser, server, and  operating system.
</p>
<h1>Dyamic URL </h1>
<p>Example URL:<br />
  http://www.maheshchari.com/products/items.php?id=x&amp;model=y&amp;variety=z <br />
  http://www.maheshchari.com/activatepage.php?username=x&amp;email=y&amp;reset=z  ….etc</p>
<h3>Disadvantages </h3>
<ul>
<li>the length of the URL must work at least <a href="http://support.microsoft.com/kb/q208427/" target="_blank" rel="nofollow">IE6</a>, that accepts max  length of 2083.</li>
<li>    Some servers like Apache sends HTTP 413 error, not sure it  depends for different versions and plat forms.Long URLs usually break when quoted in an e-mail message,  and then don&#8217;t work.</li>
<li>    In the above URL the data x, y, z vary to different  situations, so it may exceed limit.</li>
<li>    It leads some times as security issue.</li>
<li>user can&#8217;t remember and type the URL  </li>
</ul>
<h3>Best practices </h3>
<ul>
<li>make ensure the data is less.</li>
<li>user URL shortening web services.</li>
<li>encode number of parameters to single parameters. </li>
</ul>
<p>
  To make small URL with PHP see how we implement it below code</p>
<h3>encoding to  Short URL</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//making uniform data length link</span>
<span style="color: #666666; font-style: italic;">//we encrypt user data to base 64 codeformat and urlencode format</span>
<span style="color: #000088;">$param</span><span style="color: #339933;">=</span><span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">base64_encode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'username=x&amp;email=y&amp;reset=z'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$url</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'http://www.websitename.com/activate.php?param='</span><span style="color: #339933;">.</span><span style="color: #000088;">$param</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$url</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//output is:http://www.websitename.com/activate.php?param=dXNlcm5hbWU9eCZlbWFpbD15JnJlc2V0PXo%3D </span>
<span style="color: #666666; font-style: italic;">//we can also  use available url shortening web services like tiny.url ..etc</span>
<span style="color: #666666; font-style: italic;">//they provide like tinyurl.com/xeuess</span></pre></td></tr></table></div>

<h3>Decoding to long URL</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// decoding and parse to GET method</span>
<span style="color: #000088;">$getparam</span><span style="color: #339933;">=</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'param'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$decoded_param</span><span style="color: #339933;">=</span><span style="color: #990000;">base64_decode</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">urldecode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$getparam</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$decoded_param</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//output :username=x&amp;email=y&amp;reset=z</span>
<span style="color: #666666; font-style: italic;">//we delete this $_GET['param']</span>
<span style="color: #666666; font-style: italic;">//re assign global $_GET variable</span>
<span style="color: #990000;">parse_str</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$decoded_param</span><span style="color: #339933;">,</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'username'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//output is: x</span></pre></td></tr></table></div>

<h1>Static URL </h1>
<p>Example URL</p>
<p>http://www.maheshchari.com/articles/how-to-become-a-rich-man-with-in-one-day-by-author-example/</p>
<p>http://www.maheshchari.com/articles/worlds-largest-mountains-in-india-and-other-countries-polls-for-2000/</p>
<p>It is a well-known fact nowadays that without SEO a Web site  stands many chances of not being indexed by search spiders. that results poor  conversion rate.my colleague who is SEO expert had this type issue in past, that he used like above URL in his SEO or search engine optimization as it gives more chances of indexing in most search engine. but result is poor.but it wrong since he gave full URL and the page content is not much relevant to this URL. it may leads some times penalize or some times it may be spammed. </p>
<h3>Best practices </h3>
<ul>
<li>Keep URL small as possible as less than 5 to 6 words and make it for human readable not for bots</li>
<li>Keep URL most relevant to the content.</li>
<li>Keep highest keyword starting position even though grammatical mistake.</li>
<li>There is some online web services available that suggests URL according to the content.</li>
<li>Use URL shortening web services   while campaign . </li>
</ul>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=265&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/long-url-vs-short-url/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
