I need to set a rewrite rule using Rack::Rewrite to redirect based on a internal request to a file.
On nginx it goes something like this.
if (-f $document_root/cache/$host/$uri/index.html) {
rewrite (.*) /cache/$host/$1/index.html break;
}
Anyone knows how to achieve the same using Rack::Rewrite?