<?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>Web Hosting Tutorials &#187; Domains</title>
	<atom:link href="http://www.webhostingbyte.com/category/domains/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webhostingbyte.com</link>
	<description>Web Hosting Tips and Tutorials</description>
	<lastBuildDate>Thu, 07 Oct 2010 15:14:29 +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>Moniker TRAFFIC New York auction</title>
		<link>http://www.webhostingbyte.com/moniker-traffic-new-york-auction-23.html</link>
		<comments>http://www.webhostingbyte.com/moniker-traffic-new-york-auction-23.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 21:54:20 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Domain Market]]></category>
		<category><![CDATA[Domains]]></category>

		<guid isPermaLink="false">http://www.webhostingbyte.com/?p=23</guid>
		<description><![CDATA[Find you the price of the top 10 seller at a domain auction in NY, by Moniker <a href="http://www.webhostingbyte.com/moniker-traffic-new-york-auction-23.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Moniker just held a domain auction and the top 20 sellers were:</p>
<ol>
<li>multivitamins.com, sold for    $45,000</li>
<li>originals.com, sold for    $37,500</li>
<li>raspberry.com. sold for    $27,500</li>
<li>istream.com, sold for    $25,000</li>
<li>trademarklawyers.com, sold for    $24,000</li>
<li>hockey.org, sold for    $22,500</li>
<li>costumerentals.com, sold for    $21,000</li>
<li>designersunglasses.com, sold for    $21,000</li>
<li>i.biz, sold for    $17,000</li>
<li>newyorkers.com, sold for    $14,500</li>
<li>tested.com, sold for    $12,000</li>
<li>lnn.com, sold for    $11,000</li>
<li>cuffs.com, sold for    $9,500</li>
<li>skilodge.com, sold for    $9,500</li>
<li>ustrademarks.com, sold for    $9,000</li>
<li>tenniscamp.com, sold for    $8,000</li>
<li>organic.info, sold for    $7,700</li>
<li>recipebooks.com, sold for    $7,500</li>
<li>collectiblecoins.com, sold for    $7,000</li>
<li>ny.biz, sold for    $7,000</li>
</ol>
<p>Domains can be a very good investment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/moniker-traffic-new-york-auction-23.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Iframe Redirect</title>
		<link>http://www.webhostingbyte.com/domain-iframe-redirect-5.html</link>
		<comments>http://www.webhostingbyte.com/domain-iframe-redirect-5.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 16:29:10 +0000</pubDate>
		<dc:creator>Rui Soares</dc:creator>
				<category><![CDATA[Domain Management]]></category>
		<category><![CDATA[Domains]]></category>
		<category><![CDATA[iframe redirect]]></category>

		<guid isPermaLink="false">http://webhostingbyte.com/?p=5</guid>
		<description><![CDATA[How to redirect a domain to a different url, but maintaining the original domain in the address bar of the visitor's browser? <a href="http://www.webhostingbyte.com/domain-iframe-redirect-5.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Do you want to point your domain to a different domain, but in such a way that your domain appears always in the address bar of the visitor&#8217;s browser?</p>
<p>This is very useful when someone wants to point a domain to a free hosted application. Example: you build a website in a free hosting service or a free website builder service. And the website is hosted in a subdomain of that free service. And you don&#8217;t want your visitors to access that subdomain. You want them to access your domain instead.</p>
<p>It only applies if you have a hosting service. If you don&#8217;t, ask your domain registrar to point the domain to whatever url you want the domain to point to. Ask them to add a mask to the domain forward, so that the your domain remains always in the visitor&#8217;s address bar. In case you do have a hosting account, here&#8217;s how you can do that redirection. It&#8217;s called a Domain Iframe Redirect.</p>
<p>Upload an index.html with this code:</p>
<pre class="brush: php">
&lt;html&gt;

&lt;head&gt;
&lt;title&gt;Replace with title visitors will see if browser doesn&#039;t support javascript&lt;/title&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function changeTitle()
   {
   if (top.frames[&#039;main&#039;].document.title)
      {
      top.document.title=top.frames[&#039;main&#039;].document.title;
      }
   }
&lt;/script&gt;
&lt;/head&gt;

&lt;frameset&gt;
&lt;frame name=&quot;main&quot; src=&quot;http://replace-this-url.destination-domain.com&quot;scrolling=&quot;auto&quot; target=&quot;main&quot; ONLOAD=&quot;changeTitle();&quot;&gt;

&lt;noframes&gt;

&lt;body&gt;
Please enable iframe support in your browser to access this website.
&lt;/body&gt;

&lt;/noframes&gt;

&lt;/frameset&gt;

&lt;/html&gt;
</pre>
<p>Read the comments in the code. Replace what needs to be replaced. And you&#8217;re ready to go!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhostingbyte.com/domain-iframe-redirect-5.html/feed</wfw:commentRss>
		<slash:comments>73</slash:comments>
		</item>
	</channel>
</rss>

