<?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>John Nasta &#187; webmasters</title>
	<atom:link href="http://johnnasta.com/blog/tags/webmasters/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnnasta.com/blog</link>
	<description>any major dude with half a heart surely will tell you my friend</description>
	<lastBuildDate>Wed, 14 Jul 2010 22:35:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Changing The URL Of Your WordPress Site</title>
		<link>http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/</link>
		<comments>http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 20:59:10 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[upgrades]]></category>
		<category><![CDATA[upgrading]]></category>
		<category><![CDATA[urls]]></category>
		<category><![CDATA[webmasters]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=643</guid>
		<description><![CDATA[WordPress web site owners often come to realize that they want to change the URL of their web site, whether it is because they want the site to be accessible from the root folder (without using a redirect) or because they want to change the domain name of the web site. If you&#8217;d like to [...]


Related posts:<ol><li><a href='http://johnnasta.com/blog/2009/wordpress/accessing-your-wordpress-site-from-the-root-directory-folder/' rel='bookmark' title='Permanent Link: Accessing Your WordPress Site From The Root Folder'>Accessing Your WordPress Site From The Root Folder</a> <small>Update June 06, 2010 &#8211; This is an old post and I actually never do...</small></li>
<li><a href='http://johnnasta.com/blog/2009/internet/seo-noindex-nofollow-noodp-noydir-noarchive-robotstxt-exclude-sites-from-search-engines/' rel='bookmark' title='Permanent Link: Excluding Your Web Site From Search Engines'>Excluding Your Web Site From Search Engines</a> <small>People often write about how to increase your search engine ranking by using noindex and...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-themes-reviews-alternate0/' rel='bookmark' title='Permanent Link: WordPress Theme Review &#8211; Alternate0'>WordPress Theme Review &#8211; Alternate0</a> <small>Basically, unless you are a very good coder, you should forget that you ever heard...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>WordPress web site owners often come to realize that they want to change the URL of their web site, whether it is because they want the site to be accessible from the root folder (without using a redirect) or because they want to change the domain name of the web site.</p>
<p>If you&#8217;d like to do this, first ask yourself if you feel comfortable editing the code in your theme files, and if you feel comfortable using FTP to upload the edits to your web server. Remember to use a plain-text editor to make all of your edits, not a word processing program like MS Word. If you can do those things without hesitation, you&#8217;ve made it over the first hurdle.</p>
<p><span id="more-643"></span></p>
<p>The next thing you have to do is decide whether you are going to make the domain name point to your WordPress folder or if you are going to copy the site files from your WordPress folder to the folder that the domain name points to.</p>
<ul>
<li>If the domain name is changing, you can often point the new domain name to the WordPress folder when you add it in your hosting control panel, and not have to copy or move any files at all.</li>
<li>If the domain name is not changing but the path to the site is (e.g. moving WordPress to the root folder), and/or you don&#8217;t know how to point your domain to a specific folder at the hosting level, you can simply copy all of your WordPress site files via FTP to the folder that the domain name points to.</li>
</ul>
<h3>Two things to do before you upload your site files</h3>
<p><strong>Check the .htaccess file in the WordPress folder:</strong> WordPress usually writes entries to a .htaccess file in the main WordPress folder. If you are moving the site from a sub-folder to the root or vice-versa, you will have to edit this file. If your site is in a sub-folder called /blog, the .htaccess file in your WordPress folder will contain these lines:</p>
<p><code># BEGIN WordPress<br />
&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On<br />
RewriteBase /blog/<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /blog/index.php [L]<br />
&lt;/IfModule&gt;<br />
# END WordPress</code></p>
<p>If your site is going to be in the root folder, the references to the sub-folder need to be removed, making it look like this:</p>
<p><code># BEGIN WordPress<br />
&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
&lt;/IfModule&gt;<br />
# END WordPress</code></p>
<p><strong>Add two lines of code to the functions.php file of the Default theme:</strong> As shown in the WordPress Codex article <a href="http://codex.wordpress.org/Changing_The_Site_URL#Quick_fix_method" target="_blank">Changing The Site URL</a>, you can add these two lines of code to the top of your functions.php file to tell the database the new site URL:</p>
<p><code>define('WP_HOME','http://example.com');<br />
define('WP_SITEURL','http://example.com');</code></p>
<p>Replace example.com with your actual domain name and any sub-folder name that points to your site. <strong>The only reason I suggest doing this to the functions.php of the Default theme is so that you don&#8217;t have to mess with your active theme&#8217;s files.</strong> If you prefer to edit the functions.php of your active theme, that will work too. It is advisable to make backups of your functions.php file and your WordPress database at this time.</p>
<p>If you have chosen to edit the functions.php of the Default theme and that is not your active theme, go to your site&#8217;s admin <strong>at the old URL</strong> and activate the Default theme. If you edited the functions.php of your active theme, you can skip this step.</p>
<p>Now that you&#8217;ve done your edits, you can upload all of the necessary files to the proper folder. If the folder is not changing, you only need to upload the new functions.php, and possibly the new .htaccess file. If you are changing the folder, upload the entire site to the new folder.</p>
<p>Now simply go to your site at the new URL. It should work. Assuming it works fine, you can upload the backup version of the functions.php (i.e. one that has not been edited). <strong>It is important to remove those extra lines of code.</strong> Your site is now ready to go.</p>
<p>Additional considerations:</p>
<ul>
<li>If you are using a plugin that references a file in your folder structure such as the Google XML Sitemap Generator or a database backup utility, you may need to change the path in the plugin&#8217;s settings to the new path.</li>
<li>You may also need to change the path to your uploads folder in Settings > Miscellaneous</li>
<li>You may want to use the <a href="http://wordpress.org/extend/plugins/broken-link-checker/" target="_blank">Broken Link Checker</a> plugin to make sure that you don&#8217;t have any broken internal links or redirects in your site caused by the URL change.</li>
<li>If you feel brave and have a lot of internal links that need to be changed, you can use the <a href="http://wordpress.org/extend/plugins/search-and-replace/" target="_blank">Search and Replace</a> plugin to change them all simultaneously.</li>
<li>If you have moved your WordPress site to a new folder on the server, remember to delete the old files.</li>
<li>If you have changed your domain name remember to put in a <strong>.htaccess 301 redirect</strong> from the old location to the new one.</li>
<li>It is advisable to put a <strong>robots.txt</strong> file in your root folder so that search engines will crawl and re-index the site. Google may reject your sitemap if you don&#8217;t have a robots.txt file giving them access to crawl the site.</li>
</ul>
<p>If this seems too difficult for you, you may be interested in my article on <a href="http://johnnasta.com/blog/2009/wordpress/accessing-your-wordpress-site-from-the-root-directory-folder/">Accessing Your WordPress Site From The Root Folder</a>, which explains how a simple .htaccess redirect file can point requests from your root URL to your WordPress folder.</p>
<p>Have fun!</p>
<h6>This article copyright © John Nasta 2010 – All Rights Reserved</h6>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share This!</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="javascript:AddToFavorites();" title="Add to favorites"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/addtofavorites.png" title="Add to favorites" alt="Add to favorites" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;partner=sociable" title="Print"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site%20-%20http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F" title="Twitter"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;t=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site" title="Facebook"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site&amp;source=John+Nasta+any+major+dude+with+half+a+heart+surely+will+tell+you+my+friend&amp;summary=Wordpress%20web%20site%20owners%20often%20come%20to%20realize%20that%20they%20want%20to%20change%20the%20URL%20of%20their%20web%20site%2C%20whether%20it%20is%20because%20they%20want%20the%20site%20to%20be%20accessible%20from%20the%20root%20folder%20%28without%20using%20a%20redirect%29%20or%20because%20they%20want%20to%20change%20the%20domain%20na" title="LinkedIn"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;t=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site" title="MySpace"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site&amp;annotation=Wordpress%20web%20site%20owners%20often%20come%20to%20realize%20that%20they%20want%20to%20change%20the%20URL%20of%20their%20web%20site%2C%20whether%20it%20is%20because%20they%20want%20the%20site%20to%20be%20accessible%20from%20the%20root%20folder%20%28without%20using%20a%20redirect%29%20or%20because%20they%20want%20to%20change%20the%20domain%20na" title="Google Bookmarks"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site&amp;bodytext=Wordpress%20web%20site%20owners%20often%20come%20to%20realize%20that%20they%20want%20to%20change%20the%20URL%20of%20their%20web%20site%2C%20whether%20it%20is%20because%20they%20want%20the%20site%20to%20be%20accessible%20from%20the%20root%20folder%20%28without%20using%20a%20redirect%29%20or%20because%20they%20want%20to%20change%20the%20domain%20na" title="Digg"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;submitHeadline=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site&amp;submitSummary=Wordpress%20web%20site%20owners%20often%20come%20to%20realize%20that%20they%20want%20to%20change%20the%20URL%20of%20their%20web%20site%2C%20whether%20it%20is%20because%20they%20want%20the%20site%20to%20be%20accessible%20from%20the%20root%20folder%20%28without%20using%20a%20redirect%29%20or%20because%20they%20want%20to%20change%20the%20domain%20na&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F" title="Technorati"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site&amp;URL=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Wordpress%20web%20site%20owners%20often%20come%20to%20realize%20that%20they%20want%20to%20change%20the%20URL%20of%20their%20web%20site%2C%20whether%20it%20is%20because%20they%20want%20the%20site%20to%20be%20accessible%20from%20the%20root%20folder%20%28without%20using%20a%20redirect%29%20or%20because%20they%20want%20to%20change%20the%20domain%20na" title="MSN Reporter"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site" title="Live"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site&amp;notes=Wordpress%20web%20site%20owners%20often%20come%20to%20realize%20that%20they%20want%20to%20change%20the%20URL%20of%20their%20web%20site%2C%20whether%20it%20is%20because%20they%20want%20the%20site%20to%20be%20accessible%20from%20the%20root%20folder%20%28without%20using%20a%20redirect%29%20or%20because%20they%20want%20to%20change%20the%20domain%20na" title="del.icio.us"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site" title="StumbleUpon"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site" title="DZone"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://linkarena.com/bookmarks/addlink/?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site" title="LinkArena"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/linkarena.png" title="LinkArena" alt="LinkArena" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site&amp;u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F" title="Fark"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site" title="Blogosphere News"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F" title="Propeller"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site" title="Mixx"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F" title="Sphinn"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fchanging-the-url-of-your-wordpress-site%2F&amp;title=Changing%20The%20URL%20Of%20Your%20Wordpress%20Site" title="Reddit"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://johnnasta.com/blog/2009/wordpress/accessing-your-wordpress-site-from-the-root-directory-folder/' rel='bookmark' title='Permanent Link: Accessing Your WordPress Site From The Root Folder'>Accessing Your WordPress Site From The Root Folder</a> <small>Update June 06, 2010 &#8211; This is an old post and I actually never do...</small></li>
<li><a href='http://johnnasta.com/blog/2009/internet/seo-noindex-nofollow-noodp-noydir-noarchive-robotstxt-exclude-sites-from-search-engines/' rel='bookmark' title='Permanent Link: Excluding Your Web Site From Search Engines'>Excluding Your Web Site From Search Engines</a> <small>People often write about how to increase your search engine ranking by using noindex and...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-themes-reviews-alternate0/' rel='bookmark' title='Permanent Link: WordPress Theme Review &#8211; Alternate0'>WordPress Theme Review &#8211; Alternate0</a> <small>Basically, unless you are a very good coder, you should forget that you ever heard...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
