<?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>WP Blog Host Video Tutorials &#187; .htaccess</title>
	<atom:link href="http://wpbloghost.tv/tag/htaccess/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpbloghost.tv</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 31 Aug 2011 00:21:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How To Move Your WordPress Core Files Out Of Root</title>
		<link>http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/</link>
		<comments>http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 18:33:46 +0000</pubDate>
		<dc:creator>WP Blog Host</dc:creator>
				<category><![CDATA[Moving WordPress]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=154</guid>
		<description><![CDATA[This tutorial is meant to show you how to clean up all the system WordPress files that clog up your root directory by moving them into a subdirectory.


Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-upgrade-wordpress-manually/' rel='bookmark' title='How To Upgrade WordPress Manually'>How To Upgrade WordPress Manually</a></li>
<li><a href='http://wpbloghost.tv/how-to-move-your-wordpress-blog-from-a-subdirectroy-to-root/' rel='bookmark' title='How to Move Your WordPress Blog from a Subdirectroy to Root'>How to Move Your WordPress Blog from a Subdirectroy to Root</a></li>
<li><a href='http://wpbloghost.tv/wordpress-seo-permalink-structure/' rel='bookmark' title='Setting The Best Permalink (url) Structure For WordPress SEO'>Setting The Best Permalink (url) Structure For WordPress SEO</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This tutorial is meant to show you how to clean up all the system WordPress files that clog up your root directory by moving them into a subdirectory. </p>
<h2>Watch The How-To Video</h2>
<p><embed src="http://blip.tv/play/AYGT5hoC" type="application/x-shockwave-flash" width="590" height="480" allowscriptaccess="always" allowfullscreen="true"></embed> </p>
<h2>How To Create A Simple Maintenance Page</h2>
<p>You could always download a <a href="http://sw-guide.de/wordpress/plugins/maintenance-mode/" title="WordPress Maintenance Mode plugin">WordPress maintenance mode plugin</a>, but in this case it probably won&#8217;t work. During the move process you&#8217;ll be moving your /wp-content folder, which contains all your plugins. This will cause your site to not load; therefore, it&#8217;s best to have your own maintenance page independent of WordPress.</p>
<p>So, here&#8217;s how to create a custom maintenance page without a plugin.</p>
<p><strong>Step 1</strong></p>
<p>Create a simple html file and place it in your blog&#8217;s root directory. Name it something like, maintenance.html. Inside the maintenance.html file you can put anything you want. &#8220;Hi. I&#8217;m out to lunch for a few moments while the construction crew is busy at work . . .&#8221;</p>
<p>But why stop there? Your site is better than that. Customize the page with your site&#8217;s colors and images. Maybe add a video or your latest blog post. CSSgirl wrote some tips and shows some examples on the topic of <a href="http://www.cssgirl.com/articles/2008/06/16/create-a-memorable-maintenance-page/" title="Create A Memorable Maintenance Page">creating a memorable maintenance page</a>.</p>
<p><strong>Step 2</strong></p>
<p>Ok so now you have your maintenance.html page set up; the next step is to redirect everyone to it while you&#8217;re doing your upgrade.</p>
<p>Navigate to your blog&#8217;s root directory in your web hosting control panel and open your .htaccess file.</p>
<p><center><img src="http://wpbloghost.tv/wp-files/wp-content/uploads/2009/08/htaccess-edit.jpg" /></center></p>
<p>Once opened, you&#8217;re going to add this code at the top:</p>
<p><strong># Use this code to redirect visitors to maintenance.html file while upgrading<br />
Options +FollowSymlinks<br />
RewriteEngine on<br />
RewriteCond %{REMOTE_ADDR} !^<span style="background-color: rgb(255, 255, 0);">618\.124\.259\.25</span><br />
RewriteCond %{REQUEST_URI} !/maintenance.html$<br />
RewriteRule $ <span style="background-color: rgb(255, 255, 0);">http://your-site.com</span>/maintenance.html [R=302,L]</strong></p>
<p>The yellow parts above are the areas you need to change. Visit <a href="http://whatismyipaddress.com">What is my IP address?</a> to find your IP address and put those numbers in under the first yellow highlight. Next add the url path to your own maintenance page in the second yellow part.</p>
<p>And that should do it. Your site should now show a maintenance page to everyone except you (your IP address was whitelisted). To see what everyone else sees, add a # sign in front of the IP line:</p>
<p align="center"># RewriteCond %{REMOTE_ADDR} !^618\.124\.259\.25</p>
<p>The # comments lines out.</p>
<p>When you&#8217;re finished, leave the code in your .htaccess file for next time. To disable the code, just add a # in front of each line:</p>
<p><strong># Use this code to redirect visitors to maintenance.html file while upgrading<br />
# Options +FollowSymlinks<br />
# RewriteEngine on<br />
# RewriteCond %{REMOTE_ADDR} !^618\.124\.259\.25<br />
# RewriteCond %{REQUEST_URI} !/maintenance.html$<br />
# RewriteRule $ http://your-site.com/maintenance.html [R=302,L]</strong></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-upgrade-wordpress-manually/' rel='bookmark' title='How To Upgrade WordPress Manually'>How To Upgrade WordPress Manually</a></li>
<li><a href='http://wpbloghost.tv/how-to-move-your-wordpress-blog-from-a-subdirectroy-to-root/' rel='bookmark' title='How to Move Your WordPress Blog from a Subdirectroy to Root'>How to Move Your WordPress Blog from a Subdirectroy to Root</a></li>
<li><a href='http://wpbloghost.tv/wordpress-seo-permalink-structure/' rel='bookmark' title='Setting The Best Permalink (url) Structure For WordPress SEO'>Setting The Best Permalink (url) Structure For WordPress SEO</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How To Upgrade WordPress Manually</title>
		<link>http://wpbloghost.tv/how-to-upgrade-wordpress-manually/</link>
		<comments>http://wpbloghost.tv/how-to-upgrade-wordpress-manually/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 18:25:11 +0000</pubDate>
		<dc:creator>WP Blog Host</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Must Know]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=150</guid>
		<description><![CDATA[This video tutorial will show you how to upgrade WordPress manually by following the instructions on WordPress.org.


Related posts:<ol><li><a href='http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/' rel='bookmark' title='How To Move Your WordPress Core Files Out Of Root'>How To Move Your WordPress Core Files Out Of Root</a></li>
<li><a href='http://wpbloghost.tv/wordpress-seo-permalink-structure/' rel='bookmark' title='Setting The Best Permalink (url) Structure For WordPress SEO'>Setting The Best Permalink (url) Structure For WordPress SEO</a></li>
<li><a href='http://wpbloghost.tv/how-to-upgrade-your-wordpress-blog-using-the-automatic-upgrade-tool/' rel='bookmark' title='How to Upgrade Your WordPress Blog Using The Automatic Upgrade Tool'>How to Upgrade Your WordPress Blog Using The Automatic Upgrade Tool</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><center><embed src="http://blip.tv/play/AYGVmAMC" type="application/x-shockwave-flash" width="590" height="470" allowscriptaccess="always" allowfullscreen="true"></embed></center></p>
<h2>How To Create A Simple Maintenance Page</h2>
<p>You could always download a <a href="http://sw-guide.de/wordpress/plugins/maintenance-mode/" title="WordPress Maintenance Mode plugin">WordPress maintenance mode plugin</a>, but in this case it probably won&#8217;t work. When you follow the <a href="http://codex.wordpress.org/Upgrading_WordPress" title="Steps to upgrade WordPress">upgrade instructions on WordPress.org</a>, you&#8217;ll notice it says to <strong>deactivate all your plugins</strong>.</p>
<p>So, here&#8217;s how to create a custom maintenance page without a plugin.</p>
<p><strong>Step 1</strong></p>
<p>Create a simple html file and place it in your blog&#8217;s root directory. Name it something like, maintenance.html. Inside the maintenance.html file you can put anything you want. &#8220;Hi. I&#8217;m out to lunch for a few moments while the construction crew is busy at work . . .&#8221;</p>
<p>But why stop there? Your site is better than that. Customize the page with your site&#8217;s colors and images. Maybe add a video or your latest blog post. CSSgirl wrote some tips and shows some examples on the topic of <a href="http://www.cssgirl.com/articles/2008/06/16/create-a-memorable-maintenance-page/" title="Create A Memorable Maintenance Page">creating a memorable maintenance page</a>.</p>
<p><strong>Step 2</strong></p>
<p>Ok so now you have your maintenance.html page set up; the next step is to redirect everyone to it while you&#8217;re doing your upgrade.</p>
<p>Navigate to your blog&#8217;s root directory in your web hosting control panel and open your .htaccess file.</p>
<p><center><img src="http://wpbloghost.tv/wp-files/wp-content/uploads/2009/08/htaccess-edit.jpg" alt="htaccess-edit" title="htaccess-edit" width="579" height="266" class="aligncenter size-full wp-image-152" /></center></p>
<p>Once opened, you&#8217;re going to add this code at the top:</p>
<p><strong># Use this code to redirect visitors to maintenance.html file while upgrading<br />
Options +FollowSymlinks<br />
RewriteEngine on<br />
RewriteCond %{REMOTE_ADDR} !^<span style="background-color: rgb(255, 255, 0);">618\.124\.259\.25</span><br />
RewriteCond %{REQUEST_URI} !/maintenance.html$<br />
RewriteRule $ <span style="background-color: rgb(255, 255, 0);">http://your-site.com</span>/maintenance.html [R=302,L]</strong></p>
<p>The yellow parts above are the areas you need to change. Visit <a href="http://whatismyipaddress.com">What is my IP address?</a> to find your IP address and put those numbers in under the first yellow highlight. Next add the url path to your own maintenance page in the second yellow part.</p>
<p>And that should do it. Your site should now show a maintenance page to everyone except you (your IP address was whitelisted). To see what everyone else sees, add a # sign in front of the IP line:</p>
<p align="center"># RewriteCond %{REMOTE_ADDR} !^618\.124\.259\.25</p>
<p>The # comments lines out.</p>
<p>When you&#8217;re finished, leave the code in your .htaccess file for next time. To disable the code, just add a # in front of each line:</p>
<p><strong># Use this code to redirect visitors to maintenance.html file while upgrading<br />
# Options +FollowSymlinks<br />
# RewriteEngine on<br />
# RewriteCond %{REMOTE_ADDR} !^618\.124\.259\.25<br />
# RewriteCond %{REQUEST_URI} !/maintenance.html$<br />
# RewriteRule $ http://your-site.com/maintenance.html [R=302,L]</strong></p>
<p>Remember, if you need help with upgrades, visit the <a href="http://wpbloghost.com/blog-customization-and-services/" title="Contact John">blog services page</a> and use the contact form there to get in touch with me.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/' rel='bookmark' title='How To Move Your WordPress Core Files Out Of Root'>How To Move Your WordPress Core Files Out Of Root</a></li>
<li><a href='http://wpbloghost.tv/wordpress-seo-permalink-structure/' rel='bookmark' title='Setting The Best Permalink (url) Structure For WordPress SEO'>Setting The Best Permalink (url) Structure For WordPress SEO</a></li>
<li><a href='http://wpbloghost.tv/how-to-upgrade-your-wordpress-blog-using-the-automatic-upgrade-tool/' rel='bookmark' title='How to Upgrade Your WordPress Blog Using The Automatic Upgrade Tool'>How to Upgrade Your WordPress Blog Using The Automatic Upgrade Tool</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-upgrade-wordpress-manually/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Password Protect a Directory Using WP Blog Host Hosting</title>
		<link>http://wpbloghost.tv/how-to-password-protect-a-directory-using-wp-blog-host-hosting/</link>
		<comments>http://wpbloghost.tv/how-to-password-protect-a-directory-using-wp-blog-host-hosting/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 15:03:01 +0000</pubDate>
		<dc:creator>WP Blog Host</dc:creator>
				<category><![CDATA[WP Blog Host Hosting Tutorials]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=79</guid>
		<description><![CDATA[Here's how you can password protect a directory so that you can limit who can view anything contained within it.


Related posts:<ol><li><a href='http://wpbloghost.tv/change-wordpress-username-password-through-phpmyadmin/' rel='bookmark' title='How To Change Your WordPress Username &amp; Password Through phpMyAdmin'>How To Change Your WordPress Username &#038; Password Through phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/wp-blog-host-wordpress-installer/' rel='bookmark' title='How to Install WordPress on Your WP Blog Host Account'>How to Install WordPress on Your WP Blog Host Account</a></li>
<li><a href='http://wpbloghost.tv/block-bad-requests/' rel='bookmark' title='Guarding WordPress Against Hacker URL Requests'>Guarding WordPress Against Hacker URL Requests</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>At times you may want to upload something to your hosting account but only allow a select group to view it, for example a family photo or backup file. Here&#8217;s how you can password protect a directory so that you can limit who can view anything contained within it.</p>
<p><center><embed src="http://blip.tv/play/AYGUi0IC" type="application/x-shockwave-flash" width="590" height="480" allowscriptaccess="always" allowfullscreen="true"></embed> </center></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/change-wordpress-username-password-through-phpmyadmin/' rel='bookmark' title='How To Change Your WordPress Username &amp; Password Through phpMyAdmin'>How To Change Your WordPress Username &#038; Password Through phpMyAdmin</a></li>
<li><a href='http://wpbloghost.tv/wp-blog-host-wordpress-installer/' rel='bookmark' title='How to Install WordPress on Your WP Blog Host Account'>How to Install WordPress on Your WP Blog Host Account</a></li>
<li><a href='http://wpbloghost.tv/block-bad-requests/' rel='bookmark' title='Guarding WordPress Against Hacker URL Requests'>Guarding WordPress Against Hacker URL Requests</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/how-to-password-protect-a-directory-using-wp-blog-host-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Complete Guide To Setting Up FeedBurner On WordPress</title>
		<link>http://wpbloghost.tv/a-complete-guide-to-setting-up-feedburner-on-wordpress/</link>
		<comments>http://wpbloghost.tv/a-complete-guide-to-setting-up-feedburner-on-wordpress/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 14:04:38 +0000</pubDate>
		<dc:creator>WP Blog Host</dc:creator>
				<category><![CDATA[Adding To WordPress]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=59</guid>
		<description><![CDATA[This is a 3-part complete video guide showing how to set up a FeedBurner RSS subscription service for your WordPress blog.


Related posts:<ol><li><a href='http://wpbloghost.tv/wordpress-seo-permalink-structure/' rel='bookmark' title='Setting The Best Permalink (url) Structure For WordPress SEO'>Setting The Best Permalink (url) Structure For WordPress SEO</a></li>
<li><a href='http://wpbloghost.tv/how-to-upgrade-wordpress-manually/' rel='bookmark' title='How To Upgrade WordPress Manually'>How To Upgrade WordPress Manually</a></li>
<li><a href='http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/' rel='bookmark' title='How To Move Your WordPress Core Files Out Of Root'>How To Move Your WordPress Core Files Out Of Root</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The 3 videos are shown below.</p>
<p>Sorry for a 3 part video (<a title="WP Blog Host YouTube's account" href="http://youtube.com/wpbloghost">YouTube</a> only allows up to 10 minute videos), however I wanted to make sure this was a COMPLETE tutorial on how to set up a <a title="Google's Feedburner" href="https://www.google.com/accounts/ServiceLogin?service=feedburner&amp;continue=http%3A%2F%2Ffeedburner.google.com%2Ffb%2Fa%2Fmyfeeds">FeedBurner</a> account and hook it up to your WordPress blog. It will show you how to:</p>
<ul>
<li>Set up your FeedBurner account</li>
<li>How to add a RSS image to your blog&#8217;s theme if there&#8217;s not already one there &#8211; and how to link it to your FeedBurner&#8217;s feed</li>
<li>How to set up a &#8220;Subscribe by Email&#8221; box which users can subscribe to your blog by email</li>
<li>How to redirect all the default WordPress feeds on your blog to your FeedBurner&#8217;s feed through a .htaccess file</li>
<li>All this is done without the use of a FeedBurner plugin (which I don&#8217;t like using)</li>
</ul>
<p><strong>1. Your Feed Address</strong><br />
Your default WordPress feed address you&#8217;ll need to type or paste into FeedBurner will look like this:</p>
<p align="center">http://your-site.com/feed</p>
<p>If your blog is contained within a subdirectory, say <strong>/blog</strong>, your feed&#8217;s address will look something like this:</p>
<p align="center">http://your-site.com/blog/feed</p>
<p><strong>2. How To Redirect Your Feeds To FeedBurner Through .htaccess</strong></p>
<p><em><strong>UPDATE:</strong> Thanks to feedback from viewers, we&#8217;ve discovered that this code doesn&#8217;t always work with your theme. If it doesn&#8217;t work, you may have to go into your header.php or sidebar.php file and manually replace the default WordPress feed&#8217;s address with your FeedBurner&#8217;s address.</em></p>
<p>If your WordPress theme already includes a RSS icon, it will link to your default WordPress feed and not your FeedBurner&#8217;s feed. To link it to your FeedBurner&#8217;s feed, log into your web hosting control panel, navigate to your WordPress installation&#8217;s directory and either create or open the .htaccess file.</p>
<p>Paste in the following code to your .htaccess file. Don&#8217;t forget to edit the feed address in the code below  (shown in blue) to your own feed. Save the .htaccess file and your RSS icon should now link to your FeedBurner&#8217;s feed.</p>
<table border="0">
<tbody>
<tr>
<td height="15px"></td>
</tr>
</tbody>
</table>
<pre># Redirect your WordPress feeds to your FeedBurner's feed automatically
&lt;IfModule mod_rewrite.c&gt;
 RewriteEngine on
 RewriteCond %{HTTP_USER_AGENT} !FeedBurner    [NC]
 RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC]
 RewriteRule ^feed/?([_0-9a-z-]+)?/?$ <span style="color: #0000ff;">http://feeds2.feedburner.com/wpbloghost</span> [R=302,NC,L]
&lt;/IfModule&gt;</pre>
<h2>How To Set Up FeedBurner Video 1 of 3</h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="470" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/PE9A7w5bF3A&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550" height="470" src="http://www.youtube.com/v/PE9A7w5bF3A&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>How To Set Up FeedBurner Video 2 of 3</h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="470" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/oaQwZxWh12A&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550" height="470" src="http://www.youtube.com/v/oaQwZxWh12A&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>How To Set Up FeedBurner Video 3 of 3</h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="470" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/cvliwz1t7Tg&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550" height="470" src="http://www.youtube.com/v/cvliwz1t7Tg&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/wordpress-seo-permalink-structure/' rel='bookmark' title='Setting The Best Permalink (url) Structure For WordPress SEO'>Setting The Best Permalink (url) Structure For WordPress SEO</a></li>
<li><a href='http://wpbloghost.tv/how-to-upgrade-wordpress-manually/' rel='bookmark' title='How To Upgrade WordPress Manually'>How To Upgrade WordPress Manually</a></li>
<li><a href='http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/' rel='bookmark' title='How To Move Your WordPress Core Files Out Of Root'>How To Move Your WordPress Core Files Out Of Root</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/a-complete-guide-to-setting-up-feedburner-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Setting The Best Permalink (url) Structure For WordPress SEO</title>
		<link>http://wpbloghost.tv/wordpress-seo-permalink-structure/</link>
		<comments>http://wpbloghost.tv/wordpress-seo-permalink-structure/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 14:39:19 +0000</pubDate>
		<dc:creator>WP Blog Host</dc:creator>
				<category><![CDATA[Maintaining WordPress]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Must Know]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpbloghost.tv/?p=15</guid>
		<description><![CDATA[When it comes to Search Engine Optimization (SEO), your blog's url (i.e. web address) is highly relevant. One of things you can do to optimize your search engine rankings is to insert keywords into your url.

Here's how.


Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-upgrade-wordpress-manually/' rel='bookmark' title='How To Upgrade WordPress Manually'>How To Upgrade WordPress Manually</a></li>
<li><a href='http://wpbloghost.tv/a-complete-guide-to-setting-up-feedburner-on-wordpress/' rel='bookmark' title='A Complete Guide To Setting Up FeedBurner On WordPress'>A Complete Guide To Setting Up FeedBurner On WordPress</a></li>
<li><a href='http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/' rel='bookmark' title='How To Move Your WordPress Core Files Out Of Root'>How To Move Your WordPress Core Files Out Of Root</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When it comes to Search Engine Optimization (SEO), your blog&#8217;s url (i.e. web address) is highly relevant. One of things you can do to optimize your search engine rankings is to insert keywords into your url.</p>
<p>So for example, if someone goes to Google Search and does a search for <strong>baked chocolate chip cookies</strong>, which web address do you think Googlebot is going to think is most relevant for its user:</p>
<ol>
<li>http://funcooking.com/?p=1</li>
<li>http://funcooking.com/baked-chocolate-chip-cookies</li>
</ol>
<p>Number 2, of course. So here&#8217;s how you can change your WordPress permalink structure to maximize your site&#8217;s search engine optimization.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="590" height="480" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://blip.tv/play/AYGUiz4C" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="590" height="480" src="http://blip.tv/play/AYGUiz4C" allowfullscreen="true"></embed></object></p>
<h3>Doing It Yourself</h3>
<p>By following the steps in the video tutorial, WordPress does all the work for you. If you&#8217;re good with that, don&#8217;t even bother with this part.</p>
<p>If, however, you want to add the code to your .htaccess file yourself, here&#8217;s what you need to do.</p>
<p>Go to your blog&#8217;s root directory and create a file named .htaccess if there&#8217;s not already one there. Once created, open the file and add these lines of code in it:<br />
<strong><br />
# BEGIN WordPress<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
# END WordPress<br />
</strong><br />
Questions? Leave a comment below.</p>


<p>Related posts:<ol><li><a href='http://wpbloghost.tv/how-to-upgrade-wordpress-manually/' rel='bookmark' title='How To Upgrade WordPress Manually'>How To Upgrade WordPress Manually</a></li>
<li><a href='http://wpbloghost.tv/a-complete-guide-to-setting-up-feedburner-on-wordpress/' rel='bookmark' title='A Complete Guide To Setting Up FeedBurner On WordPress'>A Complete Guide To Setting Up FeedBurner On WordPress</a></li>
<li><a href='http://wpbloghost.tv/move-your-wordpress-core-files-out-of-root/' rel='bookmark' title='How To Move Your WordPress Core Files Out Of Root'>How To Move Your WordPress Core Files Out Of Root</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpbloghost.tv/wordpress-seo-permalink-structure/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

