RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . /index.cfm [L]
Which works, but does not do what I want
Rather than redirecting to the root index.cfm, I would like to have it directed to the nonexistent directory with "\index.cfm" appended. Sounds weird, I know, but this will trigger the onMissingTemplate component in coldfusion, rather than giving me the standard apache 404.
Thank you.