<?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: Redirecting Question</title>
	<atom:link href="http://www.onemanblogs.co.uk/index.php/archives/2008/07/11/redirecting-question/feed" rel="self" type="application/rss+xml" />
	<link>http://www.onemanblogs.co.uk/index.php/archives/2008/07/11/redirecting-question</link>
	<description>I am me. Who are you?</description>
	<lastBuildDate>Wed, 01 Feb 2012 18:18:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Gordon</title>
		<link>http://www.onemanblogs.co.uk/index.php/archives/2008/07/11/redirecting-question/comment-page-1#comment-9874</link>
		<dc:creator>Gordon</dc:creator>
		<pubDate>Fri, 11 Jul 2008 08:32:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemanblogs.co.uk/?p=5923#comment-9874</guid>
		<description>Cheers guys, good ideas all.

And I&#039;m flattered that you think I&#039;d know how to do it in PHP or Javascript! ;-)

Can&#039;t do anything with this until this evening or, more likely, Sunday...</description>
		<content:encoded><![CDATA[<p>Cheers guys, good ideas all.</p>
<p>And I&#8217;m flattered that you think I&#8217;d know how to do it in PHP or Javascript! <img src='http://www.onemanblogs.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Can&#8217;t do anything with this until this evening or, more likely, Sunday&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: izb</title>
		<link>http://www.onemanblogs.co.uk/index.php/archives/2008/07/11/redirecting-question/comment-page-1#comment-9873</link>
		<dc:creator>izb</dc:creator>
		<pubDate>Fri, 11 Jul 2008 08:26:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemanblogs.co.uk/?p=5923#comment-9873</guid>
		<description>The inelegant sledgehammer solution (if all else fails) would be to put some javascript in the 404 page and redirect using that by substituting the domain if it spots a wrong &#039;un.

I know. Eww.</description>
		<content:encoded><![CDATA[<p>The inelegant sledgehammer solution (if all else fails) would be to put some javascript in the 404 page and redirect using that by substituting the domain if it spots a wrong &#8216;un.</p>
<p>I know. Eww.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hg</title>
		<link>http://www.onemanblogs.co.uk/index.php/archives/2008/07/11/redirecting-question/comment-page-1#comment-9871</link>
		<dc:creator>Hg</dc:creator>
		<pubDate>Fri, 11 Jul 2008 07:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemanblogs.co.uk/?p=5923#comment-9871</guid>
		<description>Bugger, WordPress has sanitised my input.  It&#039;s all correct except that the &quot;1.php&quot; in the second line should have a dollar symbol immediately preceding it (i.e. after the forward-slash).

Let me know if it works!</description>
		<content:encoded><![CDATA[<p>Bugger, WordPress has sanitised my input.  It&#8217;s all correct except that the &#8220;1.php&#8221; in the second line should have a dollar symbol immediately preceding it (i.e. after the forward-slash).</p>
<p>Let me know if it works!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hg</title>
		<link>http://www.onemanblogs.co.uk/index.php/archives/2008/07/11/redirecting-question/comment-page-1#comment-9870</link>
		<dc:creator>Hg</dc:creator>
		<pubDate>Fri, 11 Jul 2008 07:35:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemanblogs.co.uk/?p=5923#comment-9870</guid>
		<description>I don&#039;t have an easy way of testing this myself, but if it was me this is what I&#039;d be trying first:

RewriteCond %{HTTP_HOST} ^(www\.)?gordonmclean\.co\.uk [NC]
RewriteRule ^index\.php$ http://www.onemanblogs.co.uk/$1.php [R=301,L]</description>
		<content:encoded><![CDATA[<p>I don&#8217;t have an easy way of testing this myself, but if it was me this is what I&#8217;d be trying first:</p>
<p>RewriteCond %{HTTP_HOST} ^(www\.)?gordonmclean\.co\.uk [NC]<br />
RewriteRule ^index\.php$ <a href="http://www.onemanblogs.co.uk/$1.php" rel="nofollow">http://www.onemanblogs.co.uk/$1.php</a> [R=301,L]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mo</title>
		<link>http://www.onemanblogs.co.uk/index.php/archives/2008/07/11/redirecting-question/comment-page-1#comment-9869</link>
		<dc:creator>Mo</dc:creator>
		<pubDate>Fri, 11 Jul 2008 07:30:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.onemanblogs.co.uk/?p=5923#comment-9869</guid>
		<description>If you&#039;re struggling to get .htaccess to cooperate, maybe you could simplify things. Why not use a PHP document as the 404 page, and then put the logic behind the redirection in the PHP. Maybe even a cunning regular expression. Make sense? I&#039;m not so great at expressing myself this early in the day.</description>
		<content:encoded><![CDATA[<p>If you&#8217;re struggling to get .htaccess to cooperate, maybe you could simplify things. Why not use a PHP document as the 404 page, and then put the logic behind the redirection in the PHP. Maybe even a cunning regular expression. Make sense? I&#8217;m not so great at expressing myself this early in the day.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

