Why would mod_rewrite rewrite twice? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T02:10:05Zhttp://stackoverflow.com/feeds/question/499970http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/499970/why-would-modrewrite-rewrite-twice0Why would mod_rewrite rewrite twice?Jonathan Lonowski2009-02-01T01:17:52Z2009-02-01T12:26:34Z
<p><a href="http://stackoverflow.com/questions/180007/how-do-configure-optional-or-extraneous-urls">I only recently found out about URL rewriting</a>, so I've still got a lot to learn.</p>
<p>While following the <a href="http://www.easymodrewrite.com/" rel="nofollow">Easy Mod Rewrite</a> tutorial, the results of one of their examples is really confusing me.</p>
<pre><code>RewriteBase /
RewriteRule (.*) index.php?page=$1 [QSA,L]
</code></pre>
<p>Rewrites <strong><code>/home</code></strong> as <strong><code>/index.php?page=index.php&page=home</code></strong>.</p>
<p>I thought the duplicates might have had been caused by something in my host's configs, but a clean install of <a href="http://www.apachefriends.org/en/xampp-windows.html#646" rel="nofollow">XAMPP</a> does the same.</p>
<p>So, does anyone know why this seems to parse twice?</p>
<p>And, to me this seems like, if it's going to do this, it would be an infinite loop -- why does it stop at 2 cycles?</p>
http://stackoverflow.com/questions/499970/why-would-modrewrite-rewrite-twice/499981#4999812Answer by David for Why would mod_rewrite rewrite twice?David2009-02-01T01:28:16Z2009-02-01T01:28:16Z<p>Seems like they explain it here: <a href="http://www.easymodrewrite.com/notes-last" rel="nofollow">http://www.easymodrewrite.com/notes-last</a> under "Example 1"</p>
http://stackoverflow.com/questions/499970/why-would-modrewrite-rewrite-twice/500716#5007160Answer by Gumbo for Why would mod_rewrite rewrite twice?Gumbo2009-02-01T12:26:34Z2009-02-01T12:26:34Z<p>From the <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewriteflags" rel="nofollow">Apache Module mod_rewrite documentation</a>:</p>
<blockquote>
<p><strong>'last|L' (last rule)</strong><br />
[…] if the <code>RewriteRule</code> generates an internal redirect […] this will reinject the request and will cause processing to be repeated starting from the first <code>RewriteRule</code>.</p>
</blockquote>
<p>To prevent this you could either use an additional <code>RewriteCond</code> directive:</p>
<pre><code>RewriteCond %{REQUEST_URI} !^/index\.php$
RewriteRule (.*) index.php?page=$1 [QSA,L]
</code></pre>
<p>Or you alter the pattern to not match <code>index.php</code> and use the <code>REQUEST_URI</code> variable, either in the redirect or later in PHP (<a href="http://docs.php.net/manual/en/reserved.variables.server.php" rel="nofollow"><code>$_SERVER['REQUEST_URI']</code></a>).</p>
<pre><code>RewriteRule !^index\.php$ index.php?page=%{REQUEST_URI} [QSA,L]
</code></pre>