Reply to thread

:cool: For those who use nginx:

[code]location /community/ {

    if (!-e $request_filename) {

        rewrite ^(.*)$ index.php last;

    }

}[/code]

Even easier than in mod_rewrite for Apache.


Back
Top Bottom