<?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"
	>
<channel>
	<title>Comments on: Using WordPress as a CMS - More problems sorted</title>
	<atom:link href="http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/</link>
	<description>Tom Raftery, social media consultant, speaker, blogger and podcaster</description>
	<pubDate>Sat, 06 Sep 2008 23:02:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Oleg (CMS developer)</title>
		<link>http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-116368</link>
		<dc:creator>Oleg (CMS developer)</dc:creator>
		<pubDate>Thu, 01 May 2008 18:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-116368</guid>
		<description>I think in any mod_rewrite based 'smart url' cms should be used following approach: if directory or file exists - use it. Otherwise - call appropricate php/perl handler.

something like this:

RewriteCond	%{REQUEST_FILENAME}		-f
RewriteRule	^(.+)$				$1	[L]
RewriteCond	%{REQUEST_FILENAME}/index.html	-f
RewriteRule	^(.+)$		$1/index.html		[L]

It is almost you wrote but in more common form.</description>
		<content:encoded><![CDATA[<p>I think in any mod_rewrite based &#8217;smart url&#8217; cms should be used following approach: if directory or file exists - use it. Otherwise - call appropricate php/perl handler.</p>
<p>something like this:</p>
<p>RewriteCond	%{REQUEST_FILENAME}		-f<br />
RewriteRule	^(.+)$				$1	[L]<br />
RewriteCond	%{REQUEST_FILENAME}/index.html	-f<br />
RewriteRule	^(.+)$		$1/index.html		[L]</p>
<p>It is almost you wrote but in more common form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mats</title>
		<link>http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-115310</link>
		<dc:creator>Mats</dc:creator>
		<pubDate>Mon, 17 Mar 2008 17:04:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-115310</guid>
		<description>Hi,

This is what I have in my .htaccess and I still get the same 404 page, is there anything else that could be wrong?

# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/awstats/
RewriteRule .* - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]


# END WordPress</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This is what I have in my .htaccess and I still get the same 404 page, is there anything else that could be wrong?</p>
<p># BEGIN WordPress</p>
<p>RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_URI} ^/awstats/<br />
RewriteRule .* - [L]<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]</p>
<p># END WordPress</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glen Barnhardt</title>
		<link>http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-109578</link>
		<dc:creator>Glen Barnhardt</dc:creator>
		<pubDate>Thu, 16 Aug 2007 13:49:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-109578</guid>
		<description>Howdy Tom,

I have been having this same problem with my blog. I however am on wordpress 2 platform.

I also have tried to add the code you provided and still no go on my site.

I have been searching high and low for a fix for this for about 2 weeks now. I have to put up a dummy .htaccess to view my stats. Not a good solution at all.

Any way thanks for your solution if I find one for mine I will come and put in another comment for your readers.

Sincerely,
Glen Barnhardt</description>
		<content:encoded><![CDATA[<p>Howdy Tom,</p>
<p>I have been having this same problem with my blog. I however am on wordpress 2 platform.</p>
<p>I also have tried to add the code you provided and still no go on my site.</p>
<p>I have been searching high and low for a fix for this for about 2 weeks now. I have to put up a dummy .htaccess to view my stats. Not a good solution at all.</p>
<p>Any way thanks for your solution if I find one for mine I will come and put in another comment for your readers.</p>
<p>Sincerely,<br />
Glen Barnhardt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-22928</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Tue, 29 Aug 2006 13:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-22928</guid>
		<description>Hey Tom, I've been into this issue for a couple of days now, and the suggestion you have here has also been posted on the WP support site (might have even been you? lol).  At any rate, No Go for me on this one :(  If you get a free minute and want to delve deeper into the situation, please let me know, I'd sure appreciate the help!  Here's the basics:

domain.com =&#62;  root wp install
domain.com/awstats =&#62; requires http auth, but was broken by WP Permalinks.  I've tried every variation of the

RewriteCond %{REQUEST_URI} ^/awstats/
RewriteRule .* - [L]

code as I could come up, to no avail :(  What i'm wondering now is if there's something in the apache conf that's conflicting even further... Again, if you have a free moment and want to take a look, say the word :)

Thanks for a great service to website security!
Scott</description>
		<content:encoded><![CDATA[<p>Hey Tom, I&#8217;ve been into this issue for a couple of days now, and the suggestion you have here has also been posted on the WP support site (might have even been you? lol).  At any rate, No Go for me on this one <img src='http://www.tomrafteryit.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  If you get a free minute and want to delve deeper into the situation, please let me know, I&#8217;d sure appreciate the help!  Here&#8217;s the basics:</p>
<p>domain.com =&gt;  root wp install<br />
domain.com/awstats =&gt; requires http auth, but was broken by WP Permalinks.  I&#8217;ve tried every variation of the</p>
<p>RewriteCond %{REQUEST_URI} ^/awstats/<br />
RewriteRule .* - [L]</p>
<p>code as I could come up, to no avail <img src='http://www.tomrafteryit.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  What i&#8217;m wondering now is if there&#8217;s something in the apache conf that&#8217;s conflicting even further&#8230; Again, if you have a free moment and want to take a look, say the word <img src='http://www.tomrafteryit.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks for a great service to website security!<br />
Scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-683</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Tue, 29 Mar 2005 18:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-683</guid>
		<description>Delighted the .htaccess anti-comment-spam advice has been of use Mark,

Tom</description>
		<content:encoded><![CDATA[<p>Delighted the .htaccess anti-comment-spam advice has been of use Mark,</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-682</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Tue, 29 Mar 2005 17:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.tomrafteryit.net/using-wordpress-as-a-cms-more-problems-sorted/#comment-682</guid>
		<description>I just want to say THANK YOU for your awesome help with .htaccess.

This is the BEST and easiest solution I've found in dealing with the scourge of SPAM our domain has been hit with. We have 16 blogs and after implementing this on my domain, I finally feel secure in upgrading all of them to 1.5 SANS captcha!

Thank you!</description>
		<content:encoded><![CDATA[<p>I just want to say THANK YOU for your awesome help with .htaccess.</p>
<p>This is the BEST and easiest solution I&#8217;ve found in dealing with the scourge of SPAM our domain has been hit with. We have 16 blogs and after implementing this on my domain, I finally feel secure in upgrading all of them to 1.5 SANS captcha!</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
