<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1049114" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1049114</link>
    <description></description>
    <language>en</language>
          <item>
    <title>Add this code to the top of</title>
    <link>https://www.webmaster-forums.net/server-management/two-domains-one-site-what-do#comment-1267240</link>
    <description> &lt;p&gt;Add this code to the top of the page, separately from the server {} section for the preferred canonical name.&lt;/p&gt;
 </description>
     <pubDate>Wed, 20 Jul 2011 16:22:09 +0000</pubDate>
 <dc:creator>loanspanel</dc:creator>
 <guid isPermaLink="false">comment 1267240 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Thanks. Hadn&#039;t thought about</title>
    <link>https://www.webmaster-forums.net/server-management/two-domains-one-site-what-do#comment-1263578</link>
    <description> &lt;p&gt;Thanks. Hadn&#039;t thought about SEO impact. I&#039;ve got all set up with redirects now though anyway. Sounds like it&#039;s the way to go for multiple reasons.&lt;/p&gt;
 </description>
     <pubDate>Tue, 05 Apr 2011 15:48:15 +0000</pubDate>
 <dc:creator>aharown07</dc:creator>
 <guid isPermaLink="false">comment 1263578 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>If the content is the same on</title>
    <link>https://www.webmaster-forums.net/server-management/two-domains-one-site-what-do#comment-1263562</link>
    <description> &lt;p&gt;If the content is the same on all three sites, two of the sites (maybe even all three) will be punished by the search engines for duplicate content. Therefore, it is probably best to have different content on each site or to make 301 redirects from each domain to the main site.&lt;/p&gt;
&lt;p&gt;_____________&lt;br /&gt;
Bernard&lt;br /&gt;
&lt;a href=&quot;//www.theenglishforum.com/beta/English-Grammer”&quot; rel=&quot;“nofollow”&quot; rel=&quot;nofollow&quot;&gt; Improve English Grammar&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 05 Apr 2011 09:49:14 +0000</pubDate>
 <dc:creator>bernard11</dc:creator>
 <guid isPermaLink="false">comment 1263562 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>This may help you
WWW</title>
    <link>https://www.webmaster-forums.net/server-management/two-domains-one-site-what-do#comment-1262657</link>
    <description> &lt;p&gt;This may help you&lt;/p&gt;
&lt;p&gt;WWW Redirect with nginx&lt;/p&gt;
&lt;p&gt;WWW redirect requires rewrite module, but it is included as standard HTTP modules during compilation of nginx. All Linux distribution packages that I’ve tested with include this feature.&lt;/p&gt;
&lt;p&gt;Add this code to the top of the page, separately from the server {} section for the preferred canonical name.&lt;/p&gt;
&lt;p&gt;For instance, if you like to redirect to non-www, add the following code:	&lt;/p&gt;
&lt;p&gt;server {&lt;br /&gt;
  listen 80;&lt;br /&gt;
  server_name &lt;a href=&quot;http://www.example.com;&quot; title=&quot;www.example.com;&quot; rel=&quot;nofollow&quot;&gt;www.example.com;&lt;/a&gt;&lt;br /&gt;
  rewrite ^/(.*) http://example.com/$1 permanent;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;The word permanent is key. It turns the redirect into 301 redirection. After this block, you may configure the domain without www.&lt;/p&gt;
&lt;p&gt;Here is the code for redirecting non-www to www:&lt;/p&gt;
&lt;p&gt;server {&lt;br /&gt;
  listen 80;&lt;br /&gt;
  server_name example.com;&lt;br /&gt;
  rewrite ^/(.*) http://www.example.com/$1 permanent;&lt;br /&gt;
}&lt;/p&gt;
 </description>
     <pubDate>Mon, 07 Mar 2011 20:23:28 +0000</pubDate>
 <dc:creator>mike222</dc:creator>
 <guid isPermaLink="false">comment 1262657 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Thanks.
If redirect is the</title>
    <link>https://www.webmaster-forums.net/server-management/two-domains-one-site-what-do#comment-1262325</link>
    <description> &lt;p&gt;Thanks.&lt;br /&gt;
If redirect is the standard way/best way, I know how to do that.&lt;br /&gt;
I&#039;m using nginx as web server, so no .htaccess, but it&#039;s pretty straightforward.&lt;/p&gt;
 </description>
     <pubDate>Mon, 28 Feb 2011 12:14:29 +0000</pubDate>
 <dc:creator>aharown07</dc:creator>
 <guid isPermaLink="false">comment 1262325 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>The simplest thing to do</title>
    <link>https://www.webmaster-forums.net/server-management/two-domains-one-site-what-do#comment-1262308</link>
    <description> &lt;p&gt;The simplest thing to do would be to put a redirect in the .htaccess file in the root of your .com website to do a 301 redirect to your .org website, assuming you are using apache. Alternativley you should be able to configure the webserver to do the redirect for you.&lt;/p&gt;
&lt;p&gt;Google .htaccess redirects and you should be able to find loads of examples.&lt;/p&gt;
 </description>
     <pubDate>Sun, 27 Feb 2011 15:26:18 +0000</pubDate>
 <dc:creator>TrafficNova</dc:creator>
 <guid isPermaLink="false">comment 1262308 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Not using any. All command</title>
    <link>https://www.webmaster-forums.net/server-management/two-domains-one-site-what-do#comment-1261894</link>
    <description> &lt;p&gt;Not using any. All command line.... which I&#039;m pretty new to but the theory is to get more resource per dollar by not paying for management &amp;amp; not paying for resource hungry control panels.&lt;br /&gt;
So far, it&#039;s going pretty well. I&#039;ve got two sites working on the server (very simple ones) and plan to move &quot;the big one&quot; this weekend.&lt;br /&gt;
Could not have done it without vpsBible dot com (I&#039;d link but I can&#039;t remember if that&#039;s permitted here or not)&lt;/p&gt;
&lt;p&gt;So I&#039;m hosted at Linode and the server is Ubuntu Linux 10.04 LTS. Using nginx as the web server. Last night I found instructions for doing a redirect in nginx. It&#039;s about a three step process. Not too bad. That&#039;s probably what I&#039;ll do. Just wasn&#039;t sure if there was a better idea like maybe having the .com display a page that says &quot;Hey, you&#039;ve got the wrong url, how about going to ....org&quot; Could do that I guess, but is there any advantage?&lt;/p&gt;
&lt;p&gt;(I should probably mention that Linode has a control panel, but it is pretty much for managing the basics like DNS and rebooting the virtual server (though you can do that from the command line, too). But it has some powerful features like installing your OS from an image, managing copies of disk images, etc. So that&#039;s nice. But it doesn&#039;t manage your web server at all.)&lt;/p&gt;
 </description>
     <pubDate>Wed, 16 Feb 2011 14:16:41 +0000</pubDate>
 <dc:creator>aharown07</dc:creator>
 <guid isPermaLink="false">comment 1261894 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>What kind of server</title>
    <link>https://www.webmaster-forums.net/server-management/two-domains-one-site-what-do#comment-1261889</link>
    <description> &lt;p&gt;What kind of server management software (cPanel, Plesk, if any) are you using on your new VPS?&lt;/p&gt;
 </description>
     <pubDate>Wed, 16 Feb 2011 11:52:38 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1261889 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
