If you have the pages that you DON'T want the application.cfm
to run for in a different directory simply put a new
application.cfm with blank content in that directory and it will
effectively run 'nothing' instead of the root application.cfm.
> Is it possible to have your Applications.cfm not run for
a particular page.
Well you could check the CGI.SCRIPT_NAME of the request you
wish to exclude
in the Application.cfm, and run/not run a block of code
accordingly. This
will quickly become unwieldy though, as more and more
requests need
different configs run.
You're better off organising your application slightly,
having separate
directories / Application.cfms for different requirements.