<?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>免费屋·免费资源共享中心 &#187; 域名停靠</title>
	<atom:link href="http://free5.org/tag/%e5%9f%9f%e5%90%8d%e5%81%9c%e9%9d%a0/feed/" rel="self" type="application/rss+xml" />
	<link>http://free5.org</link>
	<description>免费域名注册,解析,停靠;免费空间;免费代码;免费邮箱等免费资源的分享中心和集散地</description>
	<lastBuildDate>Wed, 09 May 2012 14:37:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>用.htaccess实现域名指向子目录功能</title>
		<link>http://free5.org/2010/02/10/use-htaccess-domain-pointing-to-a-subdirectory-to-achieve-functional/</link>
		<comments>http://free5.org/2010/02/10/use-htaccess-domain-pointing-to-a-subdirectory-to-achieve-functional/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 04:53:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress经验]]></category>
		<category><![CDATA[建站经验]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[domain parking]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[rewriterule]]></category>
		<category><![CDATA[WordPress插件]]></category>
		<category><![CDATA[Wordpress经验]]></category>
		<category><![CDATA[域名停靠]]></category>
		<category><![CDATA[建站工具]]></category>
		<category><![CDATA[环境搭建]]></category>

		<guid isPermaLink="false">http://free5.org/?p=1030</guid>
		<description><![CDATA[我购买的webhostingpad空间虽然支持Parked Domains（域名停靠）功能，但停靠的域名只能指向网站根目录即主域名（如我的http://roadh.net），如果想将域名（如http://xyc.pp.ru)停靠到我在此空间上建立的子网站（通过Addon Domains功能建立）（如http://xya.in）上，单靠cpanel控制面板提供的功能是无法实现的，好在该空间支持.htaccess文件重写功能，现就将实现方法介绍如下： 1、首先在xyc.pp.ru的dns中将其cname到xya.in上； 2、编辑网站根目录下.htaccess文件，添加如下内容： RewriteEngine on #让xyc.pp.ru 访问xya.in目录xya.in网站 RewriteCond %{HTTP_HOST} ^xyc.pp.ru$ RewriteCond %{REQUEST_URI} !^/xya.in/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /xya.in/$1 RewriteCond %{HTTP_HOST} ^xyc.pp.ru$ RewriteRule ^(/)?$ xya.in/index.php [L] 保存即可将xyc.pp.ru指向xya.in子网站（xya.in子网站的子目录名为：xya.in）。 由于我的xya.in网站为wordpress博客，若仅进行如上设置还不能很好的支持多域名访问该网站，此时需要在WordPress后台增加PS WP Multi Domain插件并启用即可正常使用xya.in和xyc.pp.ru同时访问该网站！]]></description>
			<content:encoded><![CDATA[<p>我购买的webhostingpad空间虽然支持Parked Domains（域名停靠）功能，但停靠的域名只能指向网站根目录即主域名（如我的<a href="http://roadh.net" target="_blank">http://roadh.net</a>），如果想将域名（如<a href="http://xyc.pp.ru">http://xyc.pp.ru</a>)停靠到我在此空间上建立的子网站（通过Addon Domains功能建立）（如<a href="http://xya.in">http://xya.in</a>）上，单靠cpanel控制面板提供的功能是无法实现的，好在该空间支持.htaccess文件重写功能，现就将实现方法介绍如下：</p>
<p>1、首先在xyc.pp.ru的dns中将其cname到xya.in上；</p>
<p>2、编辑网站根目录下.htaccess文件，添加如下内容：</p>
<p><span id="more-1030"></span>RewriteEngine on</p>
<p>#让xyc.pp.ru 访问xya.in目录xya.in网站</p>
<p>RewriteCond %{HTTP_HOST} ^xyc.pp.ru$<br />
RewriteCond %{REQUEST_URI} !^/xya.in/<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*)$ /xya.in/$1<br />
RewriteCond %{HTTP_HOST} ^xyc.pp.ru$<br />
RewriteRule ^(/)?$ xya.in/index.php [L]</p>
<p>保存即可将xyc.pp.ru指向xya.in子网站（xya.in子网站的子目录名为：xya.in）。</p>
<p>由于我的xya.in网站为wordpress博客，若仅进行如上设置还不能很好的支持多域名访问该网站，此时需要在WordPress后台增加PS WP Multi Domain插件并启用即可正常使用xya.in和xyc.pp.ru同时访问该网站！</p>
]]></content:encoded>
			<wfw:commentRss>http://free5.org/2010/02/10/use-htaccess-domain-pointing-to-a-subdirectory-to-achieve-functional/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cpanel空间绑定RU域名的方法</title>
		<link>http://free5.org/2009/05/18/cpanel-domain-name-space-binding-methods-ru/</link>
		<comments>http://free5.org/2009/05/18/cpanel-domain-name-space-binding-methods-ru/#comments</comments>
		<pubDate>Mon, 18 May 2009 12:51:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[免费域名]]></category>
		<category><![CDATA[建站经验]]></category>
		<category><![CDATA[域名停靠]]></category>

		<guid isPermaLink="false">http://free5.org/?p=747</guid>
		<description><![CDATA[CP空间一般都要求你把域名的DNS修改成他们服务器DNS，然而RIPN组织（RU域名提供商）为了防止域名不能访问，要求DNS的IP要相差几个IP段，而空间的DNS一般都在同一个IP段，所以该如何绑定RU域名？现在提供网上流行的两种方法： 方法一：删除A记录法（该方法适用于A记录较少的朋友）       登录域名管理面板，删除该域名下所有的A记录，过几小时后再到CP中增加域名即可 小提示：有些DNS提供商有备份A记录的功能，大家可以先备份，当域名绑定成功后再恢复。 方法二：DNS跳板法（该方法支持DNS中转的DNS提供商，例如zoneedit和value-domain）。这里以zoneedit的设置方法为例。     1、获得CP提供的DNS地址的IP，记录下来。     2、在zoneedit里，选定这个RU域名，一次点击Advanced—&#62;Make this Zone a Slave/Secondary，在Master DNS IP输入前面获得的DNS的IP地址，再点击Change Master IP—&#62;YES。现在DNS已经移交CP空间的DNS管理了。 小提示：若要恢复zoneedit对改域名的解析功能，点击Free Slave Zone即可。]]></description>
			<content:encoded><![CDATA[<p>CP空间一般都要求你把域名的DNS修改成他们服务器DNS，然而RIPN组织（RU域名提供商）为了防止域名不能访问，要求DNS的IP要相差几个IP段，而空间的DNS一般都在同一个IP段，所以该如何绑定RU域名？现在提供网上流行的两种方法：</p>
<p><span id="more-747"></span>方法一：删除A记录法（该方法适用于A记录较少的朋友）<br />
      登录域名管理面板，删除该域名下所有的A记录，过几小时后再到CP中增加域名即可<br />
小提示：有些DNS提供商有备份A记录的功能，大家可以先备份，当域名绑定成功后再恢复。</p>
<p>方法二：DNS跳板法（该方法支持DNS中转的DNS提供商，例如zoneedit和value-domain）。这里以zoneedit的设置方法为例。<br />
    1、获得CP提供的DNS地址的IP，记录下来。<br />
    2、在zoneedit里，选定这个RU域名，一次点击Advanced—&gt;Make this Zone a Slave/Secondary，在Master DNS IP输入前面获得的DNS的IP地址，再点击Change Master IP—&gt;YES。现在DNS已经移交CP空间的DNS管理了。<br />
小提示：若要恢复zoneedit对改域名的解析功能，点击Free Slave Zone即可。</p>
]]></content:encoded>
			<wfw:commentRss>http://free5.org/2009/05/18/cpanel-domain-name-space-binding-methods-ru/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>巧妙使用Domain Mirror Plugin插件让您的WordPress博客支持多域名访问</title>
		<link>http://free5.org/2009/03/11/e5-b7-a7-e5-a6-99-e4-bd-bf-e7-94-a8domain-mirror-plugin-e6-8f-92-e4-bb-b6-e8-ae-a9-e6-82-a8-e7-9a-84wordpress-e5-8d-9a-e5-ae-a2-e6-94-af-e6-8c-81-e5-a4-9a-e5-9f-9f-e5-90-8d-e8-ae-bf-e9-97-ae/</link>
		<comments>http://free5.org/2009/03/11/e5-b7-a7-e5-a6-99-e4-bd-bf-e7-94-a8domain-mirror-plugin-e6-8f-92-e4-bb-b6-e8-ae-a9-e6-82-a8-e7-9a-84wordpress-e5-8d-9a-e5-ae-a2-e6-94-af-e6-8c-81-e5-a4-9a-e5-9f-9f-e5-90-8d-e8-ae-bf-e9-97-ae/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 04:04:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress经验]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[Wordpress经验]]></category>
		<category><![CDATA[域名停靠]]></category>

		<guid isPermaLink="false">http://free5.org/?p=342</guid>
		<description><![CDATA[您是不是想让多个域名同时指向一个博客？每个域名的标题还各不相同？并且所有的文章均以各自的域名的地址存在而非其他插件的自动指向主域名？ 现在就让Domain Mirror来帮您实现这一梦想吧。 下面是其作者页面的详细说明（英文的！我将在近期以最简单的方式来加以说明！） （简单地说就是已经支持2.7版了，首先是下载插件安装，启用，然后在设置菜单中找到Domain Mirror项，按提示依次输入您想停靠的域名，标题、小标题、博客显示url（填两次），最后，最重要的也就是你必须将这些域名停靠在购买空间的主域名上－－在DreamHost空间是通过mirror项来解决！）－－祝您好运！ WordPress 2.7: Works. WordPress 2.6.2: Works. WordPress 2.6.1: Works. WordPress 2.5: DomainMirror seems to work with no changes on this version, as long as the 2.3 patch is in place. Download: Domain Mirror v1.1 Download: Domain Mirror v1.2beta Download: WP-DomainMirror WordPress 2.3 fix If you have more than one [...]]]></description>
			<content:encoded><![CDATA[<p>您是不是想让多个域名同时指向一个博客？每个域名的标题还各不相同？并且所有的文章均以各自的域名的地址存在而非其他插件的自动指向主域名？</p>
<p>现在就让Domain Mirror来帮您实现这一梦想吧。</p>
<p>下面是其作者页面的详细说明（英文的！我将在近期以最简单的方式来加以说明！）</p>
<p><strong>（简单地说就是已经支持2.7版了，首先是下载插件安装，启用，然后在设置菜单中找到</strong>Domain Mirror项，按提示依次输入您想停靠的域名，标题、小标题、博客显示url（填两次），最后，最重要的也就是你必须将这些域名停靠在购买空间的主域名上－－在DreamHost空间是通过mirror项来解决！）－－祝您好运！</p>
<p><strong>WordPress 2.7:</strong> Works.<br />
<strong>WordPress 2.6.2:</strong> Works.<br />
<strong>WordPress 2.6.1:</strong> Works.<br />
<strong>WordPress 2.5:</strong> DomainMirror seems to work with no changes on this version, as long as the 2.3 patch is in place.</p>
<p>Download: <a title="Version 1.1 downloaded 597 times" href="http://mcaleavy.org/downloads/DomainMirror-v1.1.zip">Domain Mirror v1.1</a></p>
<p>Download: <a title="Version 1.2beta downloaded 651 times" href="http://mcaleavy.org/downloads/DomainMirror-v1.2beta.zip">Domain Mirror v1.2beta</a></p>
<p>Download: <a title="Version 1.3beta downloaded 652 times" href="http://mcaleavy.org/downloads/WP-DomainMirror-2.3fix.zip">WP-DomainMirror WordPress 2.3 fix</a></p>
<p>If you have more than one domain and want to point both of them at the same WordPress installation, you’ll find that it doesn’t really work very well. WordPress creates it’s own internal URLs based on the settings in General Options. This Plugin allows multiple domains to be configured within WordPress and updates the Weblog Title, WordPress Address URL and Blog Address URL on-the-fly based on the value of $_SERVER['SERVER_NAME'].</p>
<p>This allows one installation to show different URL paths, tagline and blog title for each domain.</p>
<p>What it won’t do is make one domain appear to be two, or change your domain configuration. You need to do that yourself, or have your hosting provider do it for you.</p>
<p>To see it in action, you can access this site via <a href="http://mcaleavy.org/">http://McAleavy.org</a> or <a href="http://lightpainting.org/">http://LightPainting.org</a>. Both point to a single WordPress installation, running on a single database.</p>
<p><strong>NB: It doesn’t appear to work with WordPress MU.</strong></p>
<h3>New in v1.1</h3>
<ol>
<li>You can now have a separate tagline on each domain.</li>
<li>The Admin screen has a button to copy in the current WordPress configuration to save on typing.</li>
<li>The Admin screen has buttons to clear content from whole domains and indivudual lines.</li>
</ol>
<h3>New in v1.2beta</h3>
<p>This version is pretty new, contains quite a few changes, and may have bugs. Please use it if you’d like to help find them.</p>
<ol>
<li>Theme switching.</li>
<li>SERVER_NAME / HTTP_HOST config option.</li>
<li>“no admin screen” switch.</li>
<li>More validation.</li>
<li>Added “stripcslashes”</li>
</ol>
<h3>Installation</h3>
<ol>
<li>Download and unpack the archive. If you downloaded the plugin from my site it will unpack to a directory named “AA-DomainMirror”, but if you got it from the WordPress plugin repository it will unpack to the direcotory “domain-mirror”. Either will work, but you may need to rename the latter to “AA-DomainMirror” if you have problems with some other plugins not seeing the changes. See below.</li>
<li>Copy the whole <strong>AA-DomainMirror</strong> directory to <strong>wp-content/plugins/</strong> If possible, don’t change the name of the directory, as the <strong>AA-</strong> at the start is a <em>horrible</em> hack to ensure that WordPress loads this plugin first. This is required as any plugin loaded before it won’t be able to see the changes it makes, so will behave as if it’s still on the default domain. This puzzled me for quite a while.</li>
<li>Go to your <strong>Plugins</strong> page and activate <strong>Domain Mirror</strong>.</li>
<li>Go to the <strong>Options -&gt; Domain Mirror</strong> page and configure as outlined below.</li>
</ol>
<h3>Upgrade</h3>
<p>Overwrite the old version with the new version.</p>
<h3>Usage</h3>
<p>When enabled, Domain Mirror will change the values of Weblog Title, Tagline, WordPress Address and Blog Address automatically. Where you have hard-coded the site name or a site URL into a post or page you should replace that entry with one of the tags provided. See below.</p>
<h3>Configuration</h3>
<p>Click the images to expand.</p>
<p>You will need to set up at least 2 domains that point to the same WordPress install. With Apache you can do that with <em>Virtual Hosts</em>. If you are using a hosted account there may be some way to set this up through the account configuration screens. On the host I use for this site, DreamHost, you do this by logging into the <em>Panel</em> interface and selecting <em>Domains &gt;&gt; Manage Domains</em>. Your first domain must be <em>Fully Hosted</em>. For the Domain you want to set as the Mirror, click the edit button. In the edit screen there are 5 options:</p>
<ol>
<li>Fully Hosted;</li>
<li>Redirected;</li>
<li>Mirrored;</li>
<li>Parked;</li>
<li>Cloaked.</li>
</ol>
<div class="NGimage"><a class="highslide" href="http://mcaleavy.org/wp-content/images/posts/Mirror.jpg"><img class="ngg-singlepic" src="http://mcaleavy.org/wp-content/images/cache/125__150x150_Mirror.jpg" alt="DreamHost Mirror Settings" /> </a></p>
<div id="caption125" class="highslide-caption">
<p class="title_text" style="margin-bottom: 0pt"><strong>DreamHost Mirror Settings</strong></p>
<p class="title_text" style="margin-bottom: 0pt"> </p>
</div>
</div>
<p>Select the <em>Mirrored</em> option, and set <em>Domain to mirror</em> to the name of your <em>Fully Hosted</em> domain. Shown here is this setting for my lightpainting.org domain, which mirrors mcaleavy.org.</p>
<div></div>
<div class="NGimage"><a class="highslide" href="http://mcaleavy.org/wp-content/images/posts/OptionsBefore.jpg"><img class="ngg-singlepic" src="http://mcaleavy.org/wp-content/images/cache/74__150x150_OptionsBefore.jpg" alt="Options Before" /> </a></p>
<div id="caption74" class="highslide-caption">
<p class="title_text" style="margin-bottom: 0pt"><strong>Options Before</strong></p>
<p class="title_text" style="margin-bottom: 0pt"> </p>
</div>
</div>
<p>Your existing WordPress configuration should be left as it is. This will not be changed unless you press Save on this page when viewed from a domain other than the default. See below.</p>
<div></div>
<div class="NGimage"><a class="highslide" href="http://mcaleavy.org/wp-content/images/posts/DomainsBefore2.jpg"><img class="ngg-singlepic" src="http://mcaleavy.org/wp-content/images/cache/79__150x150_DomainsBefore2.jpg" alt="Domains Before" /> </a></p>
<div id="caption79" class="highslide-caption">
<p class="title_text" style="margin-bottom: 0pt"><strong>Domains Before</strong></p>
<p class="title_text" style="margin-bottom: 0pt"> </p>
</div>
</div>
<p>On initial activation, the Domain Mirror options screen will display a default blank entry. This default is defined in conf.inc.php &#8211; which can be edited to set different defaults. The post tags used to display the current setting of these fields in posts or pages are shown to the right. Add this text to a post or page and it will be replaced by it’s value for the current domain. This allows such posts to display properly from any configured domain.</p>
<div></div>
<div class="NGimage"><a class="highslide" href="http://mcaleavy.org/wp-content/images/posts/FirstDomain2.jpg"><img class="ngg-singlepic" src="http://mcaleavy.org/wp-content/images/cache/80__150x150_FirstDomain2.jpg" alt="First Domain" /> </a></p>
<div id="caption80" class="highslide-caption">
<p class="title_text" style="margin-bottom: 0pt"><strong>First Domain</strong></p>
<p class="title_text" style="margin-bottom: 0pt"> </p>
</div>
</div>
<p>Fill in the settings for the current domain, or press the <em>Get Current Domain</em> button to get the values from the database. This is recommended because the General Options page will show the Domain Mirror configured settings when accessed from another domain. If you then press Save on that page those options will be written to the WordPress settings, overwriting the original settings. If you don’t have those settings in Domain Mirror, they will be lost and the original domain will not function properly until they are re-entered. If Save is not pressed, the original values will be retained and will be used again when the plugin is disabled.</p>
<div></div>
<div class="NGimage"><a class="highslide" href="http://mcaleavy.org/wp-content/images/posts/ChangesSaved.jpg"><img class="ngg-singlepic" src="http://mcaleavy.org/wp-content/images/cache/70__150x150_ChangesSaved.jpg" alt="Changes Saved" /> </a></p>
<div id="caption70" class="highslide-caption">
<p class="title_text" style="margin-bottom: 0pt"><strong>Changes Saved</strong></p>
<p class="title_text" style="margin-bottom: 0pt"> </p>
</div>
</div>
<p>Click the Save button to record the changes. The screen will reload and display the Changes Saved banner.</p>
<div></div>
<div class="NGimage"><a class="highslide" href="http://mcaleavy.org/wp-content/images/posts/NewBlankDomain2.jpg"><img class="ngg-singlepic" src="http://mcaleavy.org/wp-content/images/cache/81__150x150_NewBlankDomain2.jpg" alt="New Blank Domain" /> </a></p>
<div id="caption81" class="highslide-caption">
<p class="title_text" style="margin-bottom: 0pt"><strong>New Blank Domain</strong></p>
<p class="title_text" style="margin-bottom: 0pt"> </p>
</div>
</div>
<p>To add another domain, click the Add New Domain button. The page will refersh with a 2nd blank domain.</p>
<div></div>
<div class="NGimage"><a class="highslide" href="http://mcaleavy.org/wp-content/images/posts/SecondDomain2.jpg"><img class="ngg-singlepic" src="http://mcaleavy.org/wp-content/images/cache/82__150x150_SecondDomain2.jpg" alt="Second Domain" /> </a></p>
<div id="caption82" class="highslide-caption">
<p class="title_text" style="margin-bottom: 0pt"><strong>Second Domain</strong></p>
<p class="title_text" style="margin-bottom: 0pt"> </p>
</div>
</div>
<p>Fill in the details for the 2nd domain, and click Save Changes.</p>
<div></div>
<div class="NGimage"><a class="highslide" href="http://mcaleavy.org/wp-content/images/posts/SiteBefore.jpg"><img class="ngg-singlepic" src="http://mcaleavy.org/wp-content/images/cache/71__150x150_SiteBefore.jpg" alt="SiteBefore.jpg" /> </a></p>
<div id="caption71" class="highslide-caption">
<p class="title_text" style="margin-bottom: 0pt"><strong>SiteBefore.jpg</strong></p>
<p class="title_text" style="margin-bottom: 0pt"> </p>
</div>
</div>
<p>Now, when viewed using the first domain, the site remains unchanged.</p>
<div></div>
<div class="NGimage"><a class="highslide" href="http://mcaleavy.org/wp-content/images/posts/SiteAfter.jpg"><img class="ngg-singlepic" src="http://mcaleavy.org/wp-content/images/cache/72__150x150_SiteAfter.jpg" alt="Site After" /> </a></p>
<div id="caption72" class="highslide-caption">
<p class="title_text" style="margin-bottom: 0pt"><strong>Site After</strong></p>
<p class="title_text" style="margin-bottom: 0pt"> </p>
</div>
</div>
<p>When viewed using the second domain, the site appears as if configured for that domain.</p>
<div></div>
<div class="NGimage"><a class="highslide" href="http://mcaleavy.org/wp-content/images/posts/OptionsAfter.jpg"><img class="ngg-singlepic" src="http://mcaleavy.org/wp-content/images/cache/75__150x150_OptionsAfter.jpg" alt="Options After" /> </a></p>
<div id="caption75" class="highslide-caption">
<p class="title_text" style="margin-bottom: 0pt"><strong>Options After</strong></p>
<p class="title_text" style="margin-bottom: 0pt"> </p>
</div>
</div>
<p>The General Options screen, when accessed from the new domain, now displays the details for that domain. These options, however, are coming from the Domain Mirror configuration and not from the WordPress settings. As noted before, if save is pressed on this page these options will be written to the WordPress settings, overwriting the original settings. If you don’t have those settings in Domain Mirror, they will be lost and the original domain will not function properly until they are re-entered.</p>
<p>To delete a domain, press the Delete Domain button and it will be removed from the page. This change will be written to the database when you next press Save Changes. If you delete all of the entries in Domain Mirror it will return to it’s default settings. If you wish to alter these defaults you can edit the file <strong>config.inc.php</strong> in the <strong>AA-DomainMirror</strong> directory. The “X” buttons on each line can be used to clear the contents of that line and the <em>Clear All</em> button can be used to clear the contents of that domain setting. Again, pressing <em>Save Changes</em> is rquired to make these changes permanent.</p>
]]></content:encoded>
			<wfw:commentRss>http://free5.org/2009/03/11/e5-b7-a7-e5-a6-99-e4-bd-bf-e7-94-a8domain-mirror-plugin-e6-8f-92-e4-bb-b6-e8-ae-a9-e6-82-a8-e7-9a-84wordpress-e5-8d-9a-e5-ae-a2-e6-94-af-e6-8c-81-e5-a4-9a-e5-9f-9f-e5-90-8d-e8-ae-bf-e9-97-ae/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SEDO域名停放·注册赚钱指南</title>
		<link>http://free5.org/2008/09/04/sedo%e5%9f%9f%e5%90%8d%e5%81%9c%e6%94%be%c2%b7%e6%b3%a8%e5%86%8c%e8%b5%9a%e9%92%b1%e6%8c%87%e5%8d%97/</link>
		<comments>http://free5.org/2008/09/04/sedo%e5%9f%9f%e5%90%8d%e5%81%9c%e6%94%be%c2%b7%e6%b3%a8%e5%86%8c%e8%b5%9a%e9%92%b1%e6%8c%87%e5%8d%97/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 06:48:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[免费域名]]></category>
		<category><![CDATA[建站经验]]></category>
		<category><![CDATA[网赚经验]]></category>
		<category><![CDATA[domain parking]]></category>
		<category><![CDATA[域名停靠]]></category>
		<category><![CDATA[服务器]]></category>

		<guid isPermaLink="false">http://free5.org/2008/09/04/sedo%e5%9f%9f%e5%90%8d%e5%81%9c%e6%94%be%c2%b7%e6%b3%a8%e5%86%8c%e8%b5%9a%e9%92%b1%e6%8c%87%e5%8d%97/</guid>
		<description><![CDATA[SEDO域名停放·注册赚钱指南域名停放 从不用的域名那里赚钱域名注册网最新推出“域名停放 ”系统可以让您使用域名赚钱，而且您不需要建立自己的网站。同时，域名注册网的域名停放系统可以让您的域名有更多的展示机会，有利于您的域名出售！ 域名停放 是如何工作的？只要您将域名停放 在域名注册网，系统即会自动显示根据您的域名关键字匹配、优化过的广告链接。访问者在广告链接上的每一次点击您将会获得￥0.25到￥12.00的广告佣金收入，可以轻松赚取几百、几千的广告费收入。增加您的域名出售机会，我们的研究表明在域名停放 系统登记出售的域名被卖出的机会要比普通域名多很多。在域名注册网停放域名是完全免费的，没有任何契约约束，您可以在任何时候解除这种关系，取消域名停放 。域名注册网域名停放系统提供详细的统计报告，可以让您了解到每个域名有多少访问者。sedo注册地址点这里：http://www.sedo.com1. SEDO是做什么的?Sedo(Search Engine of Domain Name)提供域名交易和付费域名停放服务,开始于2003年,主投资商1and1,主域名sedo.com(刚开始使用esedo.com,Matt老大花了一年多的时间以8w美金买进sedo.com),国别域名:sedo.co.uk, sedo.de, sedo.fr, sedo.es, sedo.cn等. 已经有包括中文在内的近10种语言界面. 2.域名交易服务. sedo收取10%的交易费,没有最低起价.可通过paypal支付,个人认为可信赖程度大于escrow.本人通过sedo交易数十个域名,均非常顺利. 3.付费停放(Paid Domain Parking) 此项服务,sedo并非原创,我接触最早的是DomainSponsor.目前有很多人提供此项服务,afternic, fabulous,goldkey等,但是如果大部分流量是亚洲流量的话,还是sedo最好,因为他跟google合作,关键词优化的比较好.其他的大部分不对亚洲流量付费,或者很少. sedo最早的合作伙伴是Espotting,付费非常高,一个点击至少1欧元左右,但是后来转向google,现在国内每个点击一般是0.03欧或者更多些,我这两天还有0.02的点击.欧美的有的有1欧的或者更多的,视关键字而定. 4.付费问题 我好久没看sedo条款了,20以上就可以通过paypal支付,50以上可以电汇,接受电汇最好的是:中行的一本通 Sedo域名停放指南 如何开始： 步骤 1 输入您的域名。 如果您还没有做好，请 创建一个Sedo帐号 点击菜单“我的Sedo&#62;&#62;添加域名”来增加您的域名。 这需要在Sedo上停放您的域名。 没有停放在Sedo上的域名不会跟停放在Sedo的域名显示在一起的。 步骤 2 请使用以下两种方法，在Sedo上“停放” 您的域名： 方法一：域名服务器转向在您注册的时候，参照下面的方法更改您的域名服务器设置： 首选服务器：NS1.SEDOPARKING.COM首选服务器IP： 217.160.95.94 备用服务器：NS2.SEDOPARKING.COM备用服务器IP： 217.160.141.42 请注意：域名服务器转向注册将会在2到3天内更新，您的域名停放页面才会显示正确。 步骤 3一但您的域名被完全地安装在您的注册商那里，您可以使用您的帐号登录到Sedo上，然后通过点击停放域名 来追踪您停放的域名。]]></description>
			<content:encoded><![CDATA[<p>SEDO域名停放·注册赚钱指南<br />域名停放</p>
<p>从不用的域名那里赚钱<br />域名注册网最新推出“域名停放 ”系统可以让您使用域名赚钱，而且您不需要建立自己的网站。同时，域名注册网的域名停放系统可以让您的域名有更多的展示机会，有利于您的域名出售！</p>
<p>域名停放 是如何工作的？<br />只要您将域名停放 在域名注册网，系统即会自动显示根据您的域名关键字匹配、优化过的广告链接。<br />访问者在广告链接上的每一次点击您将会获得￥0.25到￥12.00的广告佣金收入，可以轻松赚取几百、几千的广告费收入。<br />增加您的域名出售机会，我们的研究表明在域名停放 系统登记出售的域名被卖出的机会要比普通域名多很多。<br />在域名注册网停放域名是完全免费的，没有任何契约约束，您可以在任何时候解除这种关系，取消域名停放 。<br />域名注册网域名停放系统提供详细的统计报告，可以让您了解到每个域名有多少访问者。<br />sedo<br />注册地址点这里：<a href="http://www.sedo.com/">http://www.sedo.com</a><br />1. SEDO是做什么的?<br />Sedo(Search Engine of Domain Name)提供域名交易和付费域名停放服务,开始于2003年,主投资商1and1,主域名sedo.com(刚开始使用esedo.com,Matt老大花了一年多的时间以8w美金买进sedo.com),国别域名:sedo.co.uk, sedo.de, sedo.fr, sedo.es, sedo.cn等. 已经有包括中文在内的近10种语言界面.</p>
<p>2.域名交易服务.</p>
<p>sedo收取10%的交易费,没有最低起价.可通过paypal支付,个人认为可信赖程度大于escrow.本人通过sedo交易数十个域名,均非常顺利.</p>
<p>3.付费停放(Paid Domain Parking)</p>
<p>此项服务,sedo并非原创,我接触最早的是DomainSponsor.目前有很多人提供此项服务,afternic, fabulous,goldkey等,但是如果大部分流量是亚洲流量的话,还是sedo最好,因为他跟google合作,关键词优化的比较好.其他的大部分不对亚洲流量付费,或者很少.</p>
<p>sedo最早的合作伙伴是Espotting,付费非常高,一个点击至少1欧元左右,但是后来转向google,现在国内每个点击一般是0.03欧或者更多些,我这两天还有0.02的点击.欧美的有的有1欧的或者更多的,视关键字而定.</p>
<p>4.付费问题</p>
<p>我好久没看sedo条款了,20以上就可以通过paypal支付,50以上可以电汇,接受电汇最好的是:中行的一本通</p>
<p>Sedo域名停放指南</p>
<p>如何开始：</p>
<p>步骤 1</p>
<p>输入您的域名。 如果您还没有做好，请 创建一个Sedo帐号 点击菜单“我的Sedo&gt;&gt;添加域名”来增加您的域名。 这需要在Sedo上停放您的域名。 没有停放在Sedo上的域名不会跟停放在Sedo的域名显示在一起的。</p>
<p>步骤 2</p>
<p>请使用以下两种方法，在Sedo上“停放” 您的域名：</p>
<p>方法一：域名服务器转向<br />在您注册的时候，参照下面的方法更改您的域名服务器设置：</p>
<p>首选服务器：NS1.SEDOPARKING.COM<br />首选服务器IP： 217.160.95.94</p>
<p>备用服务器：NS2.SEDOPARKING.COM<br />备用服务器IP： 217.160.141.42</p>
<p>请注意：域名服务器转向注册将会在2到3天内更新，您的域名停放页面才会显示正确。</p>
<p>步骤 3<br />一但您的域名被完全地安装在您的注册商那里，您可以使用您的帐号登录到Sedo上，然后通过点击停放域名 来追踪您停放的域名。</p>
]]></content:encoded>
			<wfw:commentRss>http://free5.org/2008/09/04/sedo%e5%9f%9f%e5%90%8d%e5%81%9c%e6%94%be%c2%b7%e6%b3%a8%e5%86%8c%e8%b5%9a%e9%92%b1%e6%8c%87%e5%8d%97/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEDO域名停放注册，设置教程</title>
		<link>http://free5.org/2008/09/04/sedo%e5%9f%9f%e5%90%8d%e5%81%9c%e6%94%be%e6%b3%a8%e5%86%8c%ef%bc%8c%e8%ae%be%e7%bd%ae%e6%95%99%e7%a8%8b/</link>
		<comments>http://free5.org/2008/09/04/sedo%e5%9f%9f%e5%90%8d%e5%81%9c%e6%94%be%e6%b3%a8%e5%86%8c%ef%bc%8c%e8%ae%be%e7%bd%ae%e6%95%99%e7%a8%8b/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 05:36:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[免费域名]]></category>
		<category><![CDATA[建站经验]]></category>
		<category><![CDATA[网赚经验]]></category>
		<category><![CDATA[domain parking]]></category>
		<category><![CDATA[域名停靠]]></category>

		<guid isPermaLink="false">http://free5.org/2008/09/04/sedo%e5%9f%9f%e5%90%8d%e5%81%9c%e6%94%be%e6%b3%a8%e5%86%8c%ef%bc%8c%e8%ae%be%e7%bd%ae%e6%95%99%e7%a8%8b/</guid>
		<description><![CDATA[首先是注册账号：注册很简单，也很容易过~我贴一张图大家就都懂了，主要的就是邮箱，不能用hotmail和gmail，收不到激活信，我用的msn,21cn（mail.china.com也行！）的，SEDO域名出售&#38;停放详细图文教程 1.点此连接注册 2. 选择第一项英文,不要选中文,因为选中文注册的时候激活不了帐号.然后点 Register 开始注册 3. 開始填入你的註冊資料, 包括使用者名稱, 密碼, 你的住址電話, 底下的兩個方框打勾, 填好後按Next 4. 接下來可以輸入你想停放在Sedo的域名, 不需要加上http或www, 每個域名一行, 也可以先跳過, 以後再來新增你想停放在Sedo的域名, 輸入完後下面方框打勾後按Next 5. 接下來你可以依照你域名的性質選擇語言及所屬目錄, 這邊的設定不影響你的域名停放, 可是如果你打算出售你的域名, 選擇適當的目錄多少會有幫助Asking Price是你希望的價錢Minimum Offer是你接受的最低起價, 低於這個價錢的出價會被直接擋下來幣值可選EUR歐元或USD美元, 設定完後選Next, 這些設定隨時都可以更改, 不設也無所謂 6. Sedo接下來會提醒你要把該域名的DNS改到ns1.sedoparking.com及ns2.sedoparking.com如果你打算要將域名park到Sedo賺廣告費, 記得要去修改你的DNS設定如果你只是打算要出售該域名, 確還打算在售出前繼續使用, 那可以不用更改DNS設定 7. Sedo會發一封認證信去你的信箱, 打開你的信箱後點擊裡面的連結就完成整個註冊了記得在註冊完成後登入你的Sedo帳號, 在My Sedo的選單內選擇Payment 把收款方式改為PayPal收款, 最低額改為$20, 然後在下面填入你的PayPal帳號, 點選Update就可以完成你的收款設定以後只要停放在Sedo的域名賺來的廣告費超過$20就會自動存入你的PayPal帳號中。 如果要新增停放的域名的話, 只要點選My Sedo選單中的Add Domain, 然後依照步驟4~6就可以了]]></description>
			<content:encoded><![CDATA[<div>首先是注册账号：注册很简单，也很容易过~我贴一张图大家就都懂了，主要的就是邮箱，不能用hotmail和gmail，收不到激活信，我用的msn,21cn（mail.china.com也行！）的，<br />SEDO域名出售&amp;停放详细图文教程</div>
<p>
<div>1.<a href="http://www.sedo.com" target="_blank">点此连接注册</a></div>
<p>
<div>2. 选择第一项英文,不要选中文,因为选中文注册的时候激活不了帐号.然后点 Register 开始注册</div>
<p>
<div><a href="http://www.77admin.com/article/UploadPic/2007-12/2007122292730140.jpg"><img alt="" src="http://www.77admin.com/article/UploadPic/2007-12/2007122292730140.jpg" border="0" /></a></p>
<p>
<div></div>
<p>
<div>3. 開始填入你的註冊資料, 包括使用者名稱, 密碼, 你的住址電話, 底下的兩個方框打勾, 填好後按Next</div>
<p><a href="http://www.77admin.com/article/UploadPic/2007-12/2007122292736237.jpg"><img alt="" src="http://www.77admin.com/article/UploadPic/2007-12/2007122292736237.jpg" border="0" /></a></p>
<p>
<div></div>
<p>
<div>4. 接下來可以輸入你想停放在Sedo的域名, 不需要加上http或www, 每個域名一行, 也可以先跳過, 以後再來新增你想停放在Sedo的域名, 輸入完後下面方框打勾後按Next</div>
<p><a href="http://www.77admin.com/article/UploadPic/2007-12/2007122292739312.jpg"><img alt="" src="http://www.77admin.com/article/UploadPic/2007-12/2007122292739312.jpg" border="0" /></a></p>
<div></div>
<p>
<div>5. 接下來你可以依照你域名的性質選擇語言及所屬目錄, 這邊的設定不影響你的域名停放, 可是如果你打算出售你的域名, 選擇適當的目錄多少會有幫助Asking Price是你希望的價錢Minimum Offer是你接受的最低起價, 低於這個價錢的出價會被直接擋下來幣值可選EUR歐元或USD美元, 設定完後選Next, 這些設定隨時都可以更改, 不設也無所謂</div>
<p><a href="http://www.77admin.com/article/UploadPic/2007-12/2007122292738341.jpg"><img alt="" src="http://www.77admin.com/article/UploadPic/2007-12/2007122292738341.jpg" border="0" /></a></p>
<p>
<div></div>
<p>
<div>6. Sedo接下來會提醒你要把該域名的DNS改到ns1.sedoparking.com及ns2.sedoparking.com如果你打算要將域名park到Sedo賺廣告費, 記得要去修改你的DNS設定如果你只是打算要出售該域名, 確還打算在售出前繼續使用, 那可以不用更改DNS設定</div>
<p><a href="http://www.77admin.com/article/UploadPic/2007-12/2007122292743868.jpg"><img alt="" src="http://www.77admin.com/article/UploadPic/2007-12/2007122292743868.jpg" border="0" /></a></p>
<p>
<div></div>
<p>
<div>7. Sedo會發一封認證信去你的信箱, 打開你的信箱後點擊裡面的連結就完成整個註冊了記得在註冊完成後登入你的Sedo帳號, 在My Sedo的選單內選擇Payment 把收款方式改為PayPal收款, 最低額改為$20, 然後在下面填入你的PayPal帳號, 點選Update就可以完成你的收款設定以後只要停放在Sedo的域名賺來的廣告費超過$20就會自動存入你的PayPal帳號中。</div>
<p>
<div><a href="http://www.77admin.com/article/UploadPic/2007-12/2007122292730140.jpg"></a></p>
<p>
<div></div>
<p>
<div>如果要新增停放的域名的話, 只要點選My Sedo選單中的Add Domain, 然後依照步驟4~6就可以了</div>
<p><a href="http://www.77admin.com/article/UploadPic/2007-12/2007122292744659.jpg"><img alt="" src="http://www.77admin.com/article/UploadPic/2007-12/2007122292744659.jpg" border="0" /></a>
<div></div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://free5.org/2008/09/04/sedo%e5%9f%9f%e5%90%8d%e5%81%9c%e6%94%be%e6%b3%a8%e5%86%8c%ef%bc%8c%e8%ae%be%e7%bd%ae%e6%95%99%e7%a8%8b/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

