<?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>Ask Your Question &#187; www</title>
	<atom:link href="http://askbahar.com/tag/www/feed/" rel="self" type="application/rss+xml" />
	<link>http://askbahar.com</link>
	<description>Lets Talk</description>
	<lastBuildDate>Thu, 29 Sep 2011 05:48:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Is &#039;www&#039; necessary?</title>
		<link>http://askbahar.com/2008/05/18/is-www-necessary/</link>
		<comments>http://askbahar.com/2008/05/18/is-www-necessary/#comments</comments>
		<pubDate>Sun, 18 May 2008 02:49:52 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[apache redirection]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[no-www]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=31</guid>
		<description><![CDATA[<p>Have you checked this? write <a href="http://www.oogle.com" target="_blank">www.google.com</a> and <a href="http://google.com" target="_blank">google.com </a> in your browser&#8217;s address bar, then hit Enter. Both will work. same as true for <a href="http://www.yahoo.com" target="_blank">Yahoo!</a>, <a href="http://wordpress.com" target="_blank">WordPress.com</a> and other leading sites. Again there are some sites which won&#8217;t work without &#8216;<a title="World Wide Web" href="http://en.wikipedia.org/wiki/World_Wide_Web" target="_blank">www</a>&#8216;, like <a [...]]]></description>
			<content:encoded><![CDATA[<p>Have you checked this? write<strong><em> <a href="http://www.oogle.com" target="_blank">www.google.com</a></em></strong><em> </em>and <a href="http://google.com" target="_blank"><em><strong>google.com</strong></em> </a> in your browser&#8217;s address bar, then hit Enter. Both will work. same as true for <a href="http://www.yahoo.com" target="_blank">Yahoo!</a>, <a href="http://wordpress.com" target="_blank">WordPress.com</a> and other leading sites. Again there are some sites which won&#8217;t work without &#8216;<a title="World Wide Web" href="http://en.wikipedia.org/wiki/World_Wide_Web" target="_blank"><strong>www</strong></a>&#8216;, like <a href="http://www.buet.ac.bd" target="_blank">www.buet.ac.bd</a> will work but <a title="This will not work" href="http://buet.ac.bd" target="_blank">buet.ac.bd</a> won&#8217;t work.</p>
<p>So what&#8217;s the reason behind this?</p>
<p><span id="more-31"></span></p>
<p>WWW [short form of <a href="http://dictionary.reference.com/search?q=world%20wide%20web" target="_blank">World Wide Web</a>] is not really a useful thing on internet. It work like a subdomain, where all your documents, HTML and other files reside which will be publicly viewable. This is what <a href="http://en.wikipedia.org/wiki/World_Wide_Web#WWW_prefix_in_Web_addresses" target="_blank">Wikipedia says</a> about it..</p>
<blockquote><p>The letters &#8220;www&#8221; are commonly found at the beginning of <a class="mw-redirect" title="Web address" href="http://en.wikipedia.org/wiki/Web_address">Web addresses</a> because of the long-standing practice of naming Internet hosts (servers) according to the services they provide. So for example, the host name for a <a title="Web server" href="http://en.wikipedia.org/wiki/Web_server">Web server</a> is often &#8220;www&#8221;; for an <a class="mw-redirect" title="FTP server" href="http://en.wikipedia.org/wiki/FTP_server">FTP server</a>, &#8220;ftp&#8221;; and for a <a class="mw-redirect" title="USENET" href="http://en.wikipedia.org/wiki/USENET">USENET</a> <a title="News server" href="http://en.wikipedia.org/wiki/News_server">news server</a>, &#8220;news&#8221; or &#8220;nntp&#8221; (after the news protocol <a class="mw-redirect" title="NNTP" href="http://en.wikipedia.org/wiki/NNTP">NNTP</a>). These host names appear as <a class="mw-redirect" title="Domain name system" href="http://en.wikipedia.org/wiki/Domain_name_system">DNS</a> <a title="Subdomain" href="http://en.wikipedia.org/wiki/Subdomain">subdomain</a> names, as in &#8220;www.example.com&#8221;.</p></blockquote>
<p>As a matter of fact, use of the www subdomain is redundant and time consuming to communicate.  The internet,    media, and society are all better off without it.</p>
<p>So the current web administrators are practicing the no www thing. But as people are used to use the www, so they keep the both settings in their server. Some of the admins redirect all the traffic to <em>www.example-domain.com</em> like Google do when some of them redirect every thing to <em>example-domain.com</em>. I will go with the later one, it should be the standard. Even Google crawlers like the no-www address.</p>
<p>So if you want to make your default address <em>example-domain.com</em> and want to redirect <em>www.example-domain.com</em> to <em>example-domain.com</em>, so that you can catch everyone&#8217;s traffic when they hit on your site, just open <a title="Apache htaccess tutorial" href="http://httpd.apache.org/docs/2.2/howto/htaccess.html" target="_self">.htaccess</a> file in your root directory [assuming you are using apache httpd] and write following lines.</p>
<blockquote><p><span>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^www\.<span class="red">domain\.com</span>$ [NC]<br />
RewriteRule ^(.*)$ http://<span class="red">domain.com</span>/$1 [R=301,L] </span></p></blockquote>
<p>There is an organisation named <a title="No-www.org" href="http://no-www.org" target="_blank"><strong>No-www.org</strong></a> working on making internet www free <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Check them.</p>
<p>To validate your domain if it supports no-www, please use this link : <a href="http://no-www.org/verify.php" target="_blank">http://no-www.org/verify.php</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/18/is-www-necessary/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

