Why would mod_rewrite rewrite twice? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T02:10:05Z http://stackoverflow.com/feeds/question/499970 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/499970/why-would-modrewrite-rewrite-twice 0 Why would mod_rewrite rewrite twice? Jonathan Lonowski 2009-02-01T01:17:52Z 2009-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&amp;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#499981 2 Answer by David for Why would mod_rewrite rewrite twice? David 2009-02-01T01:28:16Z 2009-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#500716 0 Answer by Gumbo for Why would mod_rewrite rewrite twice? Gumbo 2009-02-01T12:26:34Z 2009-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>