For single blog installations I&#39;ve just used this after the location of static files:<br><br>if (!-e $request_filename) {<br>rewrite&nbsp; ^/(.*)$&nbsp; /index.php?q=$1&nbsp; last;<br>break;<br>}<br><br>or <br><br><code>
        if (!-e $request_filename) {<br>
        rewrite ^(.+)$ /index.php?q=$1        last;<br>
        break;<br>
        }</code><br><code></code><br>