<?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; installation</title>
	<atom:link href="http://johnnasta.com/blog/tags/installation/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>
		<item>
		<title>Accessing Your WordPress Site From The Root Folder</title>
		<link>http://johnnasta.com/blog/2009/wordpress/accessing-your-wordpress-site-from-the-root-directory-folder/</link>
		<comments>http://johnnasta.com/blog/2009/wordpress/accessing-your-wordpress-site-from-the-root-directory-folder/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 17:23:42 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[accessing]]></category>
		<category><![CDATA[folders]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[modifying]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[upgrades]]></category>
		<category><![CDATA[upgrading]]></category>
		<category><![CDATA[urls]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=572</guid>
		<description><![CDATA[Update June 06, 2010 &#8211; This is an old post and I actually never do this any more. Please see the comments. Thanks. I see a lot of people asking how to make their WordPress site accessible from the root directory folder. In most standard installations, WordPress is installed in a sub-folder and the only [...]


Related posts:<ol><li><a href='http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/' rel='bookmark' title='Permanent Link: Changing The URL Of Your WordPress Site'>Changing The URL Of Your WordPress Site</a> <small>WordPress web site owners often come to realize that they want to change the URL...</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-getting-started-without-getting-startled/' rel='bookmark' title='Permanent Link: WordPress &#8211; Getting started without getting startled'>WordPress &#8211; Getting started without getting startled</a> <small>WordPress is an amazingly effective tool for allowing users to generate a cohesive, feature-rich web...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Update June 06, 2010 &#8211; This is an old post and I actually never do this any more. Please see the comments. Thanks.</p>
<p>I see a lot of people asking how to make their WordPress site accessible from the root directory folder. In most standard installations, WordPress is installed in a sub-folder and the only way to access the site is to add that sub-folder name to the site&#8217;s URL.</p>
<p>If you read the wordpress.org support forum you&#8217;ll find posts suggesting that you move the WordPress index.php file to the root folder and change a few things in that file. You&#8217;ll also see replies from people who have tried it unsuccessfully.</p>
<p>Here&#8217;s a little trick that will allow you to access your WordPress site from the root URL without moving or modifying any of the WordPress installation files. This method will &#8220;hide&#8221; the WordPress installation&#8217;s folder name when people access your home page but they will see the folder name in URLs when they start clicking around&#8230;</p>
<p><span id="more-572"></span></p>
<p>Check your root folder for a file called .htaccess (note that the dot is before the file name). If there is one, download it. If not, create one with a plain text editor such as Windows Notepad. Make sure that when you save it, the file type is set to &#8220;All Files&#8221; so that your editor doesn&#8217;t try to add an extension onto the file name.</p>
<p>Make sure that these lines are included in your .htaccess file. For this example the root URL is shown as domain.ext and the WordPress folder is shown as wpfolder. You will have to change these values to match your own domain name, extension, and WordPress folder name:</p>
<p><code>RewriteEngine On<br />
Options +FollowSymlinks<br />
RewriteCond %{HTTP_HOST} domain.ext$<br />
RewriteCond %{REQUEST_URI} !wpfolder/<br />
RewriteRule ^(.*)$ wpfolder/$1<br />
</code></p>
<p>Upload this file to the root directory of your web server as a plain text file. You&#8217;re done!</p>
<p>Now go to Google Webmaster Tools and let them know the &#8220;preferred URL&#8221; of your home page so you don&#8217;t get penalized for duplicate content.</p>
<h6>This article copyright © John Nasta 2009 &#8211; 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%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=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder%20-%20http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;t=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder&amp;source=John+Nasta+any+major+dude+with+half+a+heart+surely+will+tell+you+my+friend&amp;summary=Update%20June%2006%2C%202010%20-%20This%20is%20an%20old%20post%20and%20I%20actually%20never%20do%20this%20any%20more.%20Please%20see%20the%20comments.%20Thanks.%0D%0A%0D%0AI%20see%20a%20lot%20of%20people%20asking%20how%20to%20make%20their%20Wordpress%20site%20accessible%20from%20the%20root%20directory%20folder.%20In%20most%20standard%20installati" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;t=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder&amp;annotation=Update%20June%2006%2C%202010%20-%20This%20is%20an%20old%20post%20and%20I%20actually%20never%20do%20this%20any%20more.%20Please%20see%20the%20comments.%20Thanks.%0D%0A%0D%0AI%20see%20a%20lot%20of%20people%20asking%20how%20to%20make%20their%20Wordpress%20site%20accessible%20from%20the%20root%20directory%20folder.%20In%20most%20standard%20installati" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder&amp;bodytext=Update%20June%2006%2C%202010%20-%20This%20is%20an%20old%20post%20and%20I%20actually%20never%20do%20this%20any%20more.%20Please%20see%20the%20comments.%20Thanks.%0D%0A%0D%0AI%20see%20a%20lot%20of%20people%20asking%20how%20to%20make%20their%20Wordpress%20site%20accessible%20from%20the%20root%20directory%20folder.%20In%20most%20standard%20installati" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;submitHeadline=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder&amp;submitSummary=Update%20June%2006%2C%202010%20-%20This%20is%20an%20old%20post%20and%20I%20actually%20never%20do%20this%20any%20more.%20Please%20see%20the%20comments.%20Thanks.%0D%0A%0D%0AI%20see%20a%20lot%20of%20people%20asking%20how%20to%20make%20their%20Wordpress%20site%20accessible%20from%20the%20root%20directory%20folder.%20In%20most%20standard%20installati&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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%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=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder&amp;URL=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Update%20June%2006%2C%202010%20-%20This%20is%20an%20old%20post%20and%20I%20actually%20never%20do%20this%20any%20more.%20Please%20see%20the%20comments.%20Thanks.%0D%0A%0D%0AI%20see%20a%20lot%20of%20people%20asking%20how%20to%20make%20their%20Wordpress%20site%20accessible%20from%20the%20root%20directory%20folder.%20In%20most%20standard%20installati" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder&amp;notes=Update%20June%2006%2C%202010%20-%20This%20is%20an%20old%20post%20and%20I%20actually%20never%20do%20this%20any%20more.%20Please%20see%20the%20comments.%20Thanks.%0D%0A%0D%0AI%20see%20a%20lot%20of%20people%20asking%20how%20to%20make%20their%20Wordpress%20site%20accessible%20from%20the%20root%20directory%20folder.%20In%20most%20standard%20installati" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder" 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=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder&amp;u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder" 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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%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%2F2009%2Fwordpress%2Faccessing-your-wordpress-site-from-the-root-directory-folder%2F&amp;title=Accessing%20Your%20Wordpress%20Site%20From%20The%20Root%20Folder" 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/2010/wordpress/changing-the-url-of-your-wordpress-site/' rel='bookmark' title='Permanent Link: Changing The URL Of Your WordPress Site'>Changing The URL Of Your WordPress Site</a> <small>WordPress web site owners often come to realize that they want to change the URL...</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-getting-started-without-getting-startled/' rel='bookmark' title='Permanent Link: WordPress &#8211; Getting started without getting startled'>WordPress &#8211; Getting started without getting startled</a> <small>WordPress is an amazingly effective tool for allowing users to generate a cohesive, feature-rich web...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/wordpress/accessing-your-wordpress-site-from-the-root-directory-folder/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>WordPress.com vs. WordPress.org</title>
		<link>http://johnnasta.com/blog/2009/wordpress/wordpresscom-vs-wordpressorg/</link>
		<comments>http://johnnasta.com/blog/2009/wordpress/wordpresscom-vs-wordpressorg/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 04:25:18 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[lunarpages]]></category>
		<category><![CDATA[newbies]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[protected]]></category>
		<category><![CDATA[protection]]></category>
		<category><![CDATA[public]]></category>
		<category><![CDATA[roles]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[upgrades]]></category>
		<category><![CDATA[upgrading]]></category>
		<category><![CDATA[users]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=451</guid>
		<description><![CDATA[Finally, a post about Wordpress for people who have never used it. Are you "wp-curious"?


Related posts:<ol><li><a href='http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/' rel='bookmark' title='Permanent Link: Changing The URL Of Your WordPress Site'>Changing The URL Of Your WordPress Site</a> <small>WordPress web site owners often come to realize that they want to change the URL...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-getting-started-without-getting-startled/' rel='bookmark' title='Permanent Link: WordPress &#8211; Getting started without getting startled'>WordPress &#8211; Getting started without getting startled</a> <small>WordPress is an amazingly effective tool for allowing users to generate a cohesive, feature-rich web...</small></li>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Clients occasionally ask me what&#8217;s the difference between setting up a web site on wordpress.com as opposed to downloading WordPress from wordpress.org and installing it on your own server. Of course the answer is that there are many. Here are some&#8230;</p>
<p><strong>Domain Name</strong></p>
<ul>
<li>By installing WordPress on your own server, you can drive traffic to your own domain and increase your web site&#8217;s overall search engine ranking.</li>
<li>On wordpress.com you can buy a domain name for $15 per year or map to an existing domain name for $10 per year. If you don&#8217;t have a domain of your own and don&#8217;t wish to purchase one, you can have a subdomain on wordpress.com (e.g. http://yoursitename.wordpress.com) for free.</li>
</ul>
<p><strong>Installation &amp; Setup</strong></p>
<ul>
<li>Setting up on wordpress.com is as simple as providing a valid email address and filling out an online form. Just about anyone can do it.</li>
<li>Installing WordPress on your own server can also be very simple. Many web hosts provide an automatic installer, which again only requires completing an online form. I like <a title="Lunapages" href="http://www.lunarpages.com/id/jnasta/goto/winter_special.php" target="_blank">Lunarpages</a> because for only $4.95 per month you can get unlimited disk space, unlimited bandwidth, and an unlimited number of subdomains, add-on domains, POP email addresses, and databases. They also have an automatic installer that allows you to set up multiple instances of WordPress whether on one domain or different domains.</li>
</ul>
<p><span id="more-451"></span></p>
<p><strong>Disk space</strong></p>
<ul>
<li>You get 3GB of disk space for free on wordpress.com. You can add 5 GB for $20/year, 15 GB for $50/year, or 25 GB for $90/year.</li>
<li>On your own domain, you potentially have unlimited disk space. With <a title="Lunapages" href="http://www.lunarpages.com/id/jnasta/goto/winter_special.php" target="_blank">Lunarpages</a>, unlimited disk space costs $4.95/month, $59.40 per year, or $118.80 for 26 months (approximately $4.57/month).</li>
</ul>
<p><strong>Advertising</strong></p>
<ul>
<li>When you install WordPress on your own server, you can host ads and generate income from your site.</li>
<li>When your site is on wordpress.com, WordPress places ads on your site (they only show to visitors who are not logged in). If you don&#8217;t want the ads on your site, that will cost you $30 per year.</li>
</ul>
<p><strong>Users</strong></p>
<ul>
<li>When your site is on wordpress.com, you are limited to 30 users. If you want to remove the limit, it will cost you $30 per year.</li>
<li>When you install WordPress on your own server, you can have an unlimited number of users.</li>
</ul>
<p><strong>Privacy Settings</strong></p>
<ul>
<li>On wordpress.com, privacy settings allow you to make your site public, hide your site from search engines, or make your site only accessible by logging in.</li>
<li>When you install WordPress on your own server, you can make your site public or hide your site from search engines, but making it only accessible by login requires a plugin.</li>
</ul>
<p><strong>Themes</strong></p>
<ul>
<li>On wordpress.com, you can choose from over 60 themes, and you can customize the CSS.</li>
<li>When WordPress is installed on your own server, you can choose from literally thousands of free themes, purchase premium themes, or design your own themes. You can also modify the CSS as well as the theme scripts, which allows you to modify a stock theme to make it look completely original. Checkout the <a title="WordPress Themes Directory" href="http://wordpress.org/extend/themes/" target="_blank">WordPress Themes Directory</a>. You can also search Google or other search engines for <a title="Free WordPress Themes" href="http://www.google.com/search?q=free+wordpress+themes" target="_blank">Free WordPress Themes</a>.</li>
</ul>
<p><strong>Widgets &amp; Plugins<br />
</strong></p>
<ul>
<li>On wordpress.com you can choose from about 25 widgets. WordPress adds widgets to the list by popular demand. You can&#8217;t install plugins.</li>
<li>When you host your own WordPress site you can choose from thousands of free plugins that add functionality to your blog including email subscription managers, shopping cart, database tools, social bookmarking, photo galleries, event calendars, the list goes on and on. Many of these plugins include widgets that allow you to display additional information in the sidebar along with the standard WordPress widgets. Check out the <a title="WordPress Plugins Directory" href="http://wordpress.org/extend/plugins/" target="_blank">WordPress Plugins Directory</a>. You can also write your own plugins and widgets, or have custom plugins and widgets developed for you.</li>
</ul>
<p><strong>Upgrades</strong></p>
<ul>
<li>On wordpress.com upgrades are done automatically. You don&#8217;t even have to think about it.</li>
<li>On your own installation you simply click a link to upgrade WordPress or your plugins. Since version 2.7 there is no need to upgrade manually or install an automatic upgrade plugin. Automatic upgrading is built in.</li>
</ul>
<p><strong>Now that you know many of the differences, what do installing WordPress on your own server and hosting your site on wordpress.com have in common?</strong></p>
<ul>
<li>Create web pages, blog posts, or both</li>
<li>Pages and posts can be public or private (require user privileges)</li>
<li>Subscribe via RSS</li>
<li>On-site search engine</li>
<li>Allow users to add comments</li>
<li>Upload and insert media</li>
<li>Add links to your favorite sites</li>
<li>Your site can be public or private (hidden from search engines)</li>
<li>Same great support forums</li>
<li>Akismet spam filtering (optional on your own installation)</li>
<li>Import content from other blogs</li>
<li>Export content from your blog to another blog</li>
<li>Multiple user levels (visitor, subscriber, contributor, author, admin)</li>
<li>Delete your site at any time</li>
</ul>
<p><strong>Still can&#8217;t decide?</strong> Then start a site on wordpress.com, get your feet wet, and see if you want to dive in. It&#8217;s totally free to begin and you don&#8217;t have to register a domain name or find a hosting company. You can always export your content into a WordPress installation on your own server if you decide to do that at a later time. Conversely, if you find that hosting your own installation hasn&#8217;t worked out for you, you can always migrate it to wordpress.com.</p>
<h6>This article copyright © John Nasta 2009 &#8211; 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%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=Wordpress.com%20vs.%20Wordpress.org%20-%20http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;t=Wordpress.com%20vs.%20Wordpress.org" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org&amp;source=John+Nasta+any+major+dude+with+half+a+heart+surely+will+tell+you+my+friend&amp;summary=Finally%2C%20a%20post%20about%20Wordpress%20for%20people%20who%20have%20never%20used%20it.%20Are%20you%20%22wp-curious%22%3F" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;t=Wordpress.com%20vs.%20Wordpress.org" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org&amp;annotation=Finally%2C%20a%20post%20about%20Wordpress%20for%20people%20who%20have%20never%20used%20it.%20Are%20you%20%22wp-curious%22%3F" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org&amp;bodytext=Finally%2C%20a%20post%20about%20Wordpress%20for%20people%20who%20have%20never%20used%20it.%20Are%20you%20%22wp-curious%22%3F" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;submitHeadline=Wordpress.com%20vs.%20Wordpress.org&amp;submitSummary=Finally%2C%20a%20post%20about%20Wordpress%20for%20people%20who%20have%20never%20used%20it.%20Are%20you%20%22wp-curious%22%3F&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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%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=Wordpress.com%20vs.%20Wordpress.org&amp;URL=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Finally%2C%20a%20post%20about%20Wordpress%20for%20people%20who%20have%20never%20used%20it.%20Are%20you%20%22wp-curious%22%3F" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org&amp;notes=Finally%2C%20a%20post%20about%20Wordpress%20for%20people%20who%20have%20never%20used%20it.%20Are%20you%20%22wp-curious%22%3F" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org" 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=Wordpress.com%20vs.%20Wordpress.org&amp;u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org" 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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%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%2F2009%2Fwordpress%2Fwordpresscom-vs-wordpressorg%2F&amp;title=Wordpress.com%20vs.%20Wordpress.org" 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/2010/wordpress/changing-the-url-of-your-wordpress-site/' rel='bookmark' title='Permanent Link: Changing The URL Of Your WordPress Site'>Changing The URL Of Your WordPress Site</a> <small>WordPress web site owners often come to realize that they want to change the URL...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-getting-started-without-getting-startled/' rel='bookmark' title='Permanent Link: WordPress &#8211; Getting started without getting startled'>WordPress &#8211; Getting started without getting startled</a> <small>WordPress is an amazingly effective tool for allowing users to generate a cohesive, feature-rich web...</small></li>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/wordpress/wordpresscom-vs-wordpressorg/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; Getting started without getting startled</title>
		<link>http://johnnasta.com/blog/2009/wordpress/wordpress-getting-started-without-getting-startled/</link>
		<comments>http://johnnasta.com/blog/2009/wordpress/wordpress-getting-started-without-getting-startled/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 22:26:37 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[MyPHPAdmin]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[wp-config.php]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=3</guid>
		<description><![CDATA[WordPress is an amazingly effective tool for allowing users to generate a cohesive, feature-rich web site very quickly and efficiently without necessarily knowing any kind of programming or coding. Having said that, the manual installation procedure does require that you know how to upload files to your server, how to create a MySQL database using [...]


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/wordpress/wordpresscom-vs-wordpressorg/' rel='bookmark' title='Permanent Link: WordPress.com vs. WordPress.org'>WordPress.com vs. WordPress.org</a> <small>Finally, a post about Wordpress for people who have never used it. Are you "wp-curious"?...</small></li>
<li><a href='http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/' rel='bookmark' title='Permanent Link: Changing The URL Of Your WordPress Site'>Changing The URL Of Your WordPress Site</a> <small>WordPress web site owners often come to realize that they want to change the URL...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>WordPress is an amazingly effective tool for allowing users to generate a cohesive, feature-rich web site very quickly and efficiently without necessarily knowing any kind of programming or coding.</p>
<p>Having said that, the manual installation procedure does require that you know how to upload files to your server, how to create a MySQL database using MyPhpAdmin, how to set the variables in the wp-config.php file, and in some cases how to set file and folder permissions on your server.</p>
<p>If you don’t feel up to what I’ve just described, you still have options. <span id="more-3"></span>If you already have a web hosting company, check your control panel to see if they have an automatic installer for WordPress. I personally recommend <a title="Lunarpages Web Hosting" href="http://www.lunarpages.com/id/jnasta/goto/winter_special.php" target="_blank">Lunarpages</a>. They use a program called Fantastico, which allows you to install a long list of scripts simply by filling in a few variables (i.e. the folder name for the installation and other simple information).</p>
<p>Your third line of defense is to create your blog on the <a title="wordpress.com" href="http://wordpress.com" target="_blank">wordpress.com</a> web site. The advantage here is that it’s the quickest and easiest way to get your blog going. You don’t even need a domain name or a host. The bad news is that if you do have a domain name and you don’t have your blog hosted on that domain name, you’re not contributing to your search engine ranking for that domain. Blogs are a great way to generate content, and having more content does help your search engine ranking.</p>
<p>Watch this site for more info for WordPress bloggers!</p>
<h6><em>This article copyright © John Nasta 2009 &#8211; All Rights Reserved</em></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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%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=Wordpress%20-%20Getting%20started%20without%20getting%20startled%20-%20http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;t=Wordpress%20-%20Getting%20started%20without%20getting%20startled" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled&amp;source=John+Nasta+any+major+dude+with+half+a+heart+surely+will+tell+you+my+friend&amp;summary=Wordpress%20is%20an%20amazingly%20effective%20tool%20for%20allowing%20users%20to%20generate%20a%20cohesive%2C%20feature-rich%20web%20site%20very%20quickly%20and%20efficiently%20without%20necessarily%20knowing%20any%20kind%20of%20programming%20or%20coding.%0D%0A%0D%0AHaving%20said%20that%2C%20the%20manual%20installation%20procedu" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;t=Wordpress%20-%20Getting%20started%20without%20getting%20startled" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled&amp;annotation=Wordpress%20is%20an%20amazingly%20effective%20tool%20for%20allowing%20users%20to%20generate%20a%20cohesive%2C%20feature-rich%20web%20site%20very%20quickly%20and%20efficiently%20without%20necessarily%20knowing%20any%20kind%20of%20programming%20or%20coding.%0D%0A%0D%0AHaving%20said%20that%2C%20the%20manual%20installation%20procedu" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled&amp;bodytext=Wordpress%20is%20an%20amazingly%20effective%20tool%20for%20allowing%20users%20to%20generate%20a%20cohesive%2C%20feature-rich%20web%20site%20very%20quickly%20and%20efficiently%20without%20necessarily%20knowing%20any%20kind%20of%20programming%20or%20coding.%0D%0A%0D%0AHaving%20said%20that%2C%20the%20manual%20installation%20procedu" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;submitHeadline=Wordpress%20-%20Getting%20started%20without%20getting%20startled&amp;submitSummary=Wordpress%20is%20an%20amazingly%20effective%20tool%20for%20allowing%20users%20to%20generate%20a%20cohesive%2C%20feature-rich%20web%20site%20very%20quickly%20and%20efficiently%20without%20necessarily%20knowing%20any%20kind%20of%20programming%20or%20coding.%0D%0A%0D%0AHaving%20said%20that%2C%20the%20manual%20installation%20procedu&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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%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=Wordpress%20-%20Getting%20started%20without%20getting%20startled&amp;URL=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Wordpress%20is%20an%20amazingly%20effective%20tool%20for%20allowing%20users%20to%20generate%20a%20cohesive%2C%20feature-rich%20web%20site%20very%20quickly%20and%20efficiently%20without%20necessarily%20knowing%20any%20kind%20of%20programming%20or%20coding.%0D%0A%0D%0AHaving%20said%20that%2C%20the%20manual%20installation%20procedu" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled&amp;notes=Wordpress%20is%20an%20amazingly%20effective%20tool%20for%20allowing%20users%20to%20generate%20a%20cohesive%2C%20feature-rich%20web%20site%20very%20quickly%20and%20efficiently%20without%20necessarily%20knowing%20any%20kind%20of%20programming%20or%20coding.%0D%0A%0D%0AHaving%20said%20that%2C%20the%20manual%20installation%20procedu" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled" 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=Wordpress%20-%20Getting%20started%20without%20getting%20startled&amp;u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled" 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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%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%2F2009%2Fwordpress%2Fwordpress-getting-started-without-getting-startled%2F&amp;title=Wordpress%20-%20Getting%20started%20without%20getting%20startled" 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/wordpress/wordpresscom-vs-wordpressorg/' rel='bookmark' title='Permanent Link: WordPress.com vs. WordPress.org'>WordPress.com vs. WordPress.org</a> <small>Finally, a post about Wordpress for people who have never used it. Are you "wp-curious"?...</small></li>
<li><a href='http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/' rel='bookmark' title='Permanent Link: Changing The URL Of Your WordPress Site'>Changing The URL Of Your WordPress Site</a> <small>WordPress web site owners often come to realize that they want to change the URL...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/wordpress/wordpress-getting-started-without-getting-startled/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
