Hidden features of mod_rewrite - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T21:55:13Zhttp://stackoverflow.com/feeds/question/286004http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/286004/hidden-features-of-modrewrite20Hidden features of mod_rewriteOwen2008-11-13T01:15:19Z2009-10-09T16:56:27Z
<p>There seem to be a decent number of <code>mod_rewrite</code> threads floating around lately with a bit of confusion over how certain aspects of it work. As a result I've compiled a few notes on common functionality, and perhaps a few annoying nuances.</p>
<p>What other features / common issues have you run across using <code>mod_rewrite</code>?</p>
http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite/286005#28600536Answer by Owen for Hidden features of mod_rewriteOwen2008-11-13T01:15:42Z2008-11-13T01:15:42Z<h2>Where to place mod_rewrite rules</h2>
<p><code>mod_rewrite</code> rules may be placed within the <code>httpd.conf</code> file, or within the <code>.htaccess</code> file. if you have access to <code>httpd.conf</code>, placing rules here will offer a performance benefit (as the rules are processed once, as opposed to each time the <code>.htaccess</code> file is called).</p>
<h2>Logging mod_rewrite requests</h2>
<p>logging may be enabled from within the <code>httpd.conf</code> file (including <code><Virtual Host></code>):</p>
<pre><code># logs can't be enabled from .htaccess
# loglevel > 2 is really spammy!
RewriteLog /path/to/rewrite.log
RewriteLogLevel 2
</code></pre>
<h2>Common use cases</h2>
<ol>
<li><p>to funnel all requests to a single point:</p>
<pre><code>RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f # ignore existing files
RewriteCond %{REQUEST_FILENAME} !-d # ignore existing directories
RewriteRule ^(.*)$ index.php?query=$1 # map requests to index.php and append
# as a query string
</code></pre></li>
<li><p>handling 301/302 redirects:</p>
<pre><code>RewriteEngine on
RewriteRule ^oldpage.html$ /newpage.html [R=302] # 302 Redirect
RewriteRule ^oldpage2.html$ /newpage.html [R=301] # 301 Redirect
</code></pre>
<p><em>note</em>: external redirects are implicitly 301 redirects:</p>
<pre><code># this rule:
RewriteRule ^somepage.html$ http://google.com
# is equivalent to:
RewriteRule ^somepage.html$ http://google.com [R]
# and:
RewriteRule ^somepage.html$ http://google.com [R=301]
</code></pre></li>
<li><p>forcing SSL</p>
<pre><code>RewriteEngine on
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://mysite.com/$1 [R,L]
</code></pre></li>
<li><p>common flag usage:</p>
<ul>
<li>[R] force a redirect (default 301)</li>
<li>[R=302] force a 302 redirect</li>
<li>[L] stop rewriting process (see note below in common pitfalls)</li>
<li>[NC] case insensitive matches</li>
</ul>
<p>you can mix and match flags:</p>
<pre><code>RewriteRule ^olddir(.*)$ /newdir$1 [L,NC]
</code></pre></li>
</ol>
<h2>Common pitfalls</h2>
<ol>
<li><p>mixing <code>mod_alias</code> style redirects with <code>mod_rewrite</code></p>
<pre><code># Bad
Redirect 302 /somepage.html http://mysite.com/otherpage.html
RewriteEngine on
RewriteRule ^(.*)$ index.php?query=$1
# Good (use mod_rewrite for both)
RewriteEngine on
RewriteRule ^somepage.html$ /otherpage.html [R=302,L] # 302 redirect, and stop processing
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?query=$1 # handle other redirects
</code></pre>
<p><em>note</em>: you can mix <code>mod_alias</code> with <code>mod_rewrite</code>, but it involves more work than just handling basic redirects as above.</p></li>
<li><p>context affects syntax</p>
<p>within <code>.htaccess</code> files, a leading slash is not used in the pattern:</p>
<pre><code># given: GET /directory/file.html
# .htaccess
# result: /newdirectory/file.html
RewriteRule ^directory(.*)$ /newdirectory$1
# .htaccess
# result: no match!
RewriteRule ^/directory(.*)$ /newdirectory$1
# httpd.conf
# result: /newdirectory/file.html
RewriteRule ^/directory(.*)$ /newdirectory$1
</code></pre></li>
<li><p>[L] is not last! (sometimes)</p>
<p>within the <code>.htaccess</code> context, [L] will not force <code>mod_rewrite</code> to stop. it will continue to trigger internal sub-requests:</p>
<pre><code>RewriteRule ^dirA$ /dirB [L] # processing does not stop here
RewriteRule ^dirB$ /dirC # /dirC will be the final result
</code></pre>
<p>our rewrite log shows the details:</p>
<pre><code>rewrite 'dirA' -> '/dirB'
internal redirect with /dirB [INTERNAL REDIRECT]
rewrite 'dirB' -> '/dirC'
</code></pre></li>
</ol>
http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite/1298917#12989171Answer by michael for Hidden features of mod_rewritemichael2009-08-19T10:08:10Z2009-08-19T10:08:10Z<p><strong>Other Pitfalls:</strong></p>
<p>1- Sometimes it's a good idea to disable MultiViews</p>
<pre><code>Options -MultiViews
</code></pre>
<p>I'm not well verse on all of MultiViews capabilities, but I know that it messes up my mod_rewrite rules when active, because one of its properties is to try and 'guess' an extension to a file that it thinks I'm looking for.</p>
<p>I'll explain:
Suppose you have 2 php files in your web dir, file1.php and file2.php and you add these conditions and rule to your .htaccess :</p>
<pre><code>RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ file1.php/$1
</code></pre>
<p>You assume that all urls that do not match a file or a directory will be grabbed by file1.php. Surprise! This rule is not being honored for the url <a href="http://myhost/file2/somepath" rel="nofollow">http://myhost/file2/somepath</a>. Instead you're taken inside file2.php. </p>
<p>What's going on is that MultiViews automagically guessed that the url that you actually wanted was <a href="http://myhost/file2.php/somepath" rel="nofollow">http://myhost/file2.php/somepath</a> and gladly took you there. </p>
<p>Now, you have no clue what just happened and you're at that point questioning everything that you thought you knew about mod_rewrite. You then start playing around with rules to try to make sense of the logic behind this new situation, but the more you're testing the less sense it makes. </p>
<p>Ok, In short if you want mod_rewrite to work in a way that approximates logic, turning off MultiViews is a step in the right direction.</p>
<p>2- enable FollowSymlinks</p>
<pre><code>Options +FollowSymLinks
</code></pre>
<p>That one, I don't really know the details of, but I've seen it mentioned many times, so just do it.</p>
http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite/1298953#12989530Answer by Benedikt Eger for Hidden features of mod_rewriteBenedikt Eger2009-08-19T10:18:10Z2009-08-19T10:18:10Z<p>Another great feature are rewrite-map-expansions. They're especially useful if you have a massive amout of hosts / rewrites to handle:</p>
<p>They are like a key-value-replacement:</p>
<pre><code>RewriteMap examplemap txt:/path/to/file/map.txt
</code></pre>
<p>Then you can use a mapping in your rules like:</p>
<pre><code>RewriteRule ^/ex/(.*) ${examplemap:$1}
</code></pre>
<p>More information on this topic can be found here:</p>
<p><a href="http://httpd.apache.org/docs/2.0/mod/mod%5Frewrite.html#mapfunc" rel="nofollow">http://httpd.apache.org/docs/2.0/mod/mod%5Frewrite.html#mapfunc</a></p>
http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite/1338657#13386571Answer by Sean McMillan for Hidden features of mod_rewriteSean McMillan2009-08-27T03:07:26Z2009-08-27T03:07:26Z<p>The deal with RewriteBase:</p>
<p>You almost always need to set RewriteBase. If you don't, apache guesses that your base is the physical disk path to your directory. So start with this:</p>
<pre><code>RewriteBase /
</code></pre>
http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite/1544946#15449460Answer by hcentelles for Hidden features of mod_rewritehcentelles2009-10-09T16:56:27Z2009-10-09T16:56:27Z<p>"[L] is not last! (sometimes)</p>
<p>within the .htaccess context, [L] will not force mod_rewrite to stop. it will continue to trigger internal sub-requests:"</p>
<p>How can I stop that?</p>