<?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>Evolution Systems &#187; HTTP</title>
	<atom:link href="http://evolution-systems.co.uk/tag/http/feed/" rel="self" type="application/rss+xml" />
	<link>http://evolution-systems.co.uk</link>
	<description>Web Development, Software Development and Linux Consultancy services</description>
	<lastBuildDate>Fri, 08 Aug 2025 09:18:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Apache Mod Rewrite And HTTP GET</title>
		<link>http://evolution-systems.co.uk/2009/05/20/apache-mod-rewrite-and-http-get-2/</link>
		<comments>http://evolution-systems.co.uk/2009/05/20/apache-mod-rewrite-and-http-get-2/#comments</comments>
		<pubDate>Wed, 20 May 2009 13:59:34 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Matts Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[GET]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[Mod Rewrite]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/wordpress/?p=488</guid>
		<description><![CDATA[Just a quick post about passing the HTTP GET parameters to pages when using Apache with Mod Rewrite. Obviously if you are using a rule that redirects a number of URL&#8217;s to a single script and you try to pass GET parameters they just get tagged on to the end of it which will usually [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Just a quick post about passing the HTTP GET parameters to pages when using Apache with Mod Rewrite. Obviously if you are using a rule that redirects a number of URL&#8217;s to a single script and you try to pass GET parameters they just get tagged on to the end of it which will usually break things. You need to append the GET parameters from within the rewrite rule as shown below to get it to work properly.</p>
<p><code>RewriteRule ^(.*)/$ index.php?page=$1&#038;%{QUERY_STRING}</code><br />
Simply appending &#8216;&#038;%{QUERY_STRING}&#8217; to the end of the rule tells Mod Rewrite to append the GET parameters.</p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2009/05/20/apache-mod-rewrite-and-http-get-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
