<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Help &#8211; Google Can&#8217;t Index Outside of wp-content directory?</title>
	<atom:link href="http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/</link>
	<description>Internet Marketing, Website Promotion and Blogging Advice</description>
	<lastBuildDate>Sun, 29 Jan 2012 02:18:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: cpradio</title>
		<link>http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/comment-page-1/#comment-240</link>
		<dc:creator>cpradio</dc:creator>
		<pubDate>Mon, 29 Jan 2007 02:57:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/#comment-240</guid>
		<description>Well, I question whether the wordpress .htaccess info that checks the directories after the domain name and directs them to index.php would cause the problem.

Though it looks like the !-d would ensure its not an existing directory already.  So thus, nothing seems out of the ordinary to me.</description>
		<content:encoded><![CDATA[<p>Well, I question whether the wordpress .htaccess info that checks the directories after the domain name and directs them to index.php would cause the problem.</p>
<p>Though it looks like the !-d would ensure its not an existing directory already.  So thus, nothing seems out of the ordinary to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Golgotha</title>
		<link>http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/comment-page-1/#comment-237</link>
		<dc:creator>Golgotha</dc:creator>
		<pubDate>Sun, 28 Jan 2007 22:19:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/#comment-237</guid>
		<description>Hey cp, I don&#039;t think it&#039;s the .htaccess file. I don&#039;t see anything in there that would do that but I have posted it above - have a look.
</description>
		<content:encoded><![CDATA[<p>Hey cp, I don&#8217;t think it&#8217;s the .htaccess file. I don&#8217;t see anything in there that would do that but I have posted it above &#8211; have a look.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cpradio</title>
		<link>http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/comment-page-1/#comment-236</link>
		<dc:creator>cpradio</dc:creator>
		<pubDate>Sun, 28 Jan 2007 20:34:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/#comment-236</guid>
		<description>Maybe this is a shot in the dark, but would your .htaccess file that does the Mod-Rewrite hack for the friendly URLs for posts have any bearing on it?</description>
		<content:encoded><![CDATA[<p>Maybe this is a shot in the dark, but would your .htaccess file that does the Mod-Rewrite hack for the friendly URLs for posts have any bearing on it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Golgotha</title>
		<link>http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/comment-page-1/#comment-233</link>
		<dc:creator>Golgotha</dc:creator>
		<pubDate>Sun, 28 Jan 2007 05:27:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/#comment-233</guid>
		<description>I have no clue why Google can&#039;t index those 3 pages, but it&#039;s now chapping my hide.

I&#039;ll got $10 bucks to anyone who can find the problem...</description>
		<content:encoded><![CDATA[<p>I have no clue why Google can&#8217;t index those 3 pages, but it&#8217;s now chapping my hide.</p>
<p>I&#8217;ll got $10 bucks to anyone who can find the problem&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Golgotha</title>
		<link>http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/comment-page-1/#comment-217</link>
		<dc:creator>Golgotha</dc:creator>
		<pubDate>Fri, 26 Jan 2007 19:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/#comment-217</guid>
		<description>Good question Dan, they are &#039;regular&#039; web pages. But, I do put this at the top of them: 

&lt;?php
define(&#039;WP_USE_THEMES&#039;, false);
require($_SERVER[&#039;DOCUMENT_ROOT&#039;].&quot;/wp-blog-header.php&quot;);
?&gt;

this then allows me to use things like: &lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;

But, I don&#039;t know maybe this is the problem? I can play with that....</description>
		<content:encoded><![CDATA[<p>Good question Dan, they are &#8216;regular&#8217; web pages. But, I do put this at the top of them: </p>
<p>< ?php<br />
define('WP_USE_THEMES', false);<br />
require($_SERVER['DOCUMENT_ROOT']."/wp-blog-header.php");<br />
?></p>
<p>this then allows me to use things like: < ?php bloginfo('template_directory'); ?></p>
<p>But, I don&#8217;t know maybe this is the problem? I can play with that&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Schulz</title>
		<link>http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/comment-page-1/#comment-216</link>
		<dc:creator>Dan Schulz</dc:creator>
		<pubDate>Fri, 26 Jan 2007 18:25:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/01/26/help-google-cant-index-outside-of-wp-content-directory/#comment-216</guid>
		<description>Do you have them set up as &quot;WordPress Pages&quot; or are they just regular Web pages?</description>
		<content:encoded><![CDATA[<p>Do you have them set up as &#8220;WordPress Pages&#8221; or are they just regular Web pages?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

