I have a Rails application that a couple of folders in the root (of
public) for Wordpress and Mediawiki that I want to completely exclude
from Rails routing. How do I have the routing function of my Rails
app ignore anything in the /blog or /wiki directories?
I have a Rails application that a couple of folders in the root (of
public) for Wordpress and Mediawiki that I want to completely exclude
from Rails routing. How do I have the routing function of my Rails
app ignore anything in the /blog or /wiki directories?
Example:
When someone types inhttp://mydomain.com/blog, I want the Rails app’s
routing to ignore it.
Typically you don’t do this inside rails, you do this in apache, nginx
etc. by telling it to only proxy through to rails what you want to
through (so normally you would let nginx or apache handle static
files)
You don’t have to worry. Rails runs as the 404 handler, so only
handles files that do not exist in the normal web server html area.
So, if the php file exists, it should take precedence over rails.
Think of how the index.html file has to be removed from a new rails
app to get it started.
I’d set a catchall route so that Rails would notice missing files in
those applications.
Brendon.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.