#The ColdBox index.cfm/{path_info} rules.
RewriteRule ^$ index.cfm [QSA,NS]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.cfm/%{REQUEST_URI} [QSA,L,NS]
# Defend your computer from some worm attacks
RewriteRule .*(?:global.asa|default\.ida|root\.exe|\.\.).* . [F,I,O]
# Redirect Robots to a cfm version of your robots.txt
RewriteRule ^/robots\.txt /robots.cfm
# Change your default cfm file to index.cfm
RewriteRule ^/default.cfm /index.cfm [I,RP,L]
RewriteRule ^/default.cfm((\?.+)|())$ /index.cfm$1 [I,RP,L]
RewriteRule ^/News.html((\?.+)|())$ /News/index.cfm$1 [I,RP,L]
# redirect mozilla to another area
RewriteCond %{HTTP_USER_AGENT} ^Mozilla.*
RewriteRule ^/no-moz-here$ /homepage.max.html [L]