Avatar

rlaskey

New
  • Re: Vanilla on Nginx

    Here's the way I was able to tackle nginx w/ Vanilla:location /forum {try_files $uri $uri/ @forum;} location @forum {rewrite ^/forum(.+)$ /forum/index.php?p=$1 last;} It's better not to use if statem… (View Post)