vote up 14 vote down
star
26

There seem to be a decent number of mod_rewrite 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.

What other features / common issues have you run across using mod_rewrite?

flag
add comment

1 Answer

vote up 22 vote down

Where to place mod_rewrite rules

mod_rewrite rules may be placed within the httpd.conf file, or within the .htaccess file. if you have access to httpd.conf, placing rules here will offer a performance benefit (as the rules are processed once, as opposed to each time the .htaccess file is called).

Logging mod_rewrite requests

logging may be enabled from within the httpd.conf file (including <Virtual Host>):

# logs can't be enabled from .htaccess
# loglevel > 2 is really spammy!
RewriteLog /path/to/rewrite.log
RewriteLogLevel 2

Common use cases

  1. to funnel all requests to a single point:

    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
    
  2. handling 301/302 redirects:

    RewriteEngine on
    RewriteRule ^oldpage.html$ /newpage.html [R=302]  # 302 Redirect
    RewriteRule ^oldpage2.html$ /newpage.html [R=301] # 301 Redirect
    

    note: external redirects are implicitly 301 redirects:

    # 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]
    
  3. forcing SSL

    RewriteEngine on
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://mysite.com/$1 [R,L]
    
  4. common flag usage:

    • [R] force a redirect (default 301)
    • [R=302] force a 302 redirect
    • [L] stop rewriting process (see note below in common pitfalls)
    • [NC] case insensitive matches

    you can mix and match flags:

    RewriteRule ^olddir(.*)$ /newdir$1 [L,NC]
    

Common pitfalls

  1. mixing mod_alias style redirects with mod_rewrite

    # 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
    

    note: you can mix mod_alias with mod_rewrite, but it involves more work than just handling basic redirects as above.

  2. context affects syntax

    within .htaccess files, a leading slash is not used in the pattern:

    # 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
    
  3. [L] is not last! (sometimes)

    within the .htaccess context, [L] will not force mod_rewrite to stop. it will continue to trigger internal sub-requests:

    RewriteRule ^dirA$ /dirB [L] # processing does not stop here
    RewriteRule ^dirB$ /dirC     # /dirC will be the final result
    

    our rewrite log shows the details:

    rewrite 'dirA' -> '/dirB'
    internal redirect with /dirB [INTERNAL REDIRECT]
    rewrite 'dirB' -> '/dirC'
    
link|flag
Dude, totally the best article on the internet now on mod rewrite. I hate that thing. Im a lighttpd heretic because of how much i hate mod_rewrite. – Kent Fredric Nov 13 at 1:20
This has been THE most useful guide I've found on mod_rewrite so far. Just finding out about RewriteLog helped fix so many problems that what was taking me days to track down turned into a few minutes. (I mean the rules were written but I couldn't figure out why they weren't working) – Joe Chin Feb 27 at 10:18
Great post, I expect to find myself back here many times! – Liam Mar 11 at 12:31
add comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.