<?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>h4x3d.com &#187; permalinks</title>
	<atom:link href="http://h4x3d.com/tag/permalinks/feed/" rel="self" type="application/rss+xml" />
	<link>http://h4x3d.com</link>
	<description>online portfolio of Julian Klewes</description>
	<lastBuildDate>Mon, 25 Jul 2011 13:18:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>SEO: WordPress Search with Permalink structure</title>
		<link>http://h4x3d.com/seo-wordpress-search-with-permalink-structure/</link>
		<comments>http://h4x3d.com/seo-wordpress-search-with-permalink-structure/#comments</comments>
		<pubDate>Fri, 31 Aug 2007 07:16:28 +0000</pubDate>
		<dc:creator>jez</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.h4x3d.com/seo-wordpress-search-with-permalink-structure/</guid>
		<description><![CDATA[Ever wondered how you could transfer any searches from ?s=TERM to /search/TERM , then read below or visit Alex King&#8217;s approach. This is too good to not report on, so for personal archiving reasons, I have put Alex&#8217; Code below: To your .htaccess file add: RewriteRule ^search/(.+)?$ /index.php?s=$1 [QSA,L] In your theme, look out for [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how you could transfer any searches from ?s=TERM to /search/TERM , then read below or visit <a href="http://alexking.org/blog/2007/08/30/friendly-search-urls">Alex King&#8217;s approach</a>.</p>
<p>This is too good to not report on, so for personal archiving reasons, I have put Alex&#8217; Code below:<br />
<span id="more-858"></span><br />
<em>To your .htaccess file add:</em></p>
<pre><code>
RewriteRule ^search/(.+)?$ /index.php?s=$1 [QSA,L]
</code></pre>
<p><em>In your theme, look out for search.php or similar and change the form field to:</em></p>
<pre><code>
&lt;form action=&quot;;/index.php" method="get" onsubmit="location.href='/search/' + encodeURIComponent(this.s.value).replace(/%20/g, '+'); return false;"&gt;
</form>

</code></pre>
<p><em>This is it, you are done!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://h4x3d.com/seo-wordpress-search-with-permalink-structure/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Changing Permalink structure (removing datestamp)</title>
		<link>http://h4x3d.com/changing-permalink-structure-removing-datestamp/</link>
		<comments>http://h4x3d.com/changing-permalink-structure-removing-datestamp/#comments</comments>
		<pubDate>Wed, 04 Jan 2006 17:26:46 +0000</pubDate>
		<dc:creator>jez</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[modrewrite]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.h4x3d.com/changing-permalink-structure-removing-datestamp/</guid>
		<description><![CDATA[If you used the default permalink structure, you&#8217;d have something similar to: /%year%/%monthnum%/ %postname%/ now say you want to get rid of the dates (maybe seo-wise driven?) you&#8217;d have /%year%/%postname%/ But now all your posts (and post slugs) are outdated, thus returning 404 or if you got the right redirection rules return you to some [...]]]></description>
			<content:encoded><![CDATA[<p>If you used the default permalink structure,<br />
you&#8217;d have something similar to:</p>
<blockquote><p>/%year%/%monthnum%/<br />
%postname%/</p></blockquote>
<p>now say you want to get rid of the dates<br />
(maybe seo-wise driven?)<br />
you&#8217;d have</p>
<blockquote><p>/%year%/%postname%/</p></blockquote>
<p>But now all your posts (and post slugs) are outdated,<br />
thus returning 404 or if you got the right<br />
redirection rules return you to some error document.<br />
That&#8217;s exactly what I did and troubled with.<br />
Now there is this guy scotty from fucoder.com<br />
who is a real genius.<br />
He told me to solve this problem by<br />
by adding an extra Mod_Rewrite rule before the rules<br />
generated by WordPress.<br />
In my  case:</p>
<blockquote><p>RewriteRule ^([0-9]{4})/<br />
([0-9]{1,2})/([0-9]{1,2})/<br />
([^/]+)/?$ /$4/ [L,R=301]</p></blockquote>
<p>He told me to put that right after RewriteBase<br />
to install this redirection and it worked wonders.<br />
Thanks scotty!</p>
<p>Vielleicht auch fuer einige interessant ist dieser <span class="red"><a href="http://www.perun.net/2005/05/02/aenderung-der-permalinks/">Artikel</a></span> ?ber das Aendern von Permalinks in WordPress (alte uri /archiv/ neue /)</p>
]]></content:encoded>
			<wfw:commentRss>http://h4x3d.com/changing-permalink-structure-removing-datestamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

