Steve,
Thanks for the info. I will go with the subdirectory route. Now my issues have to do with the fact that I will now have 2 login pages, one for desktop and one for mobile. My authentication begins in OnRequestStart, and includes the login page(rather than using cflocation) if the user is not authenticated or the user/password combo is invalid. The issue with this is the fact that the images on the login pages will not display correctly because if a mobile user is trying to hit the desktop version of the site, it will include the mobile login page with an incorrect path to the images. The mobile/login.cfm has path to images "../images/pic.png" and the login.cfm has this path: "images/pic.png". There are several instances of this occurring and it has to do with using a sub directory. I am trying to find a way around this issue the correct way with minimal code. I could have one login page(with both versions of the login page) where it detects the browser rather than having the detection in the application.cfc method. Any thoughts?