Multiviews in nginx (sorta)

I use wsvn on my svn subdomain. Nginx doesn’t have real support for this, but there is a way to sorta do this. First we set this in our / location: #Sorta emulate multiviews. set $path_info “”; if ($uri ~ “^/wsvn/(.+)$”) { set $path_info “/$1”; rewrite ^(.+)$ /wsvn.php?$1 last; } Now I just need to …