Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
What are you trying to do? Heroku doesn't have an available filesystem, so you won't be able to cache anything there. – jordelver Jan 31 at 14:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.