Can LightFront handle search engine safe (SES) URL's?

Yes, some experimentation with mod_rewrites have produced satisfactory results with LightFront applications.

The following settings have worked with Apache 2.2, but are not officially supported in the framework:

RewriteEngine on
RewriteLog logs/lightfront-rewrite_log
RewriteRule ^/do/([A-Za-z0-9-]+)/([A-Za-z0-9-]+)/([A-Za-z0-9-]+) /index.cfm?do=$1.$2.$3 [PT,L]
RewriteRule ^/do/([A-Za-z0-9-]+)/([A-Za-z0-9-]+) /index.cfm?do=$1.$2 [PT,L]
RewriteRule ^/do/([A-Za-z0-9-]+)/?$ /index.cfm?do=$1 [PT,L]

Note: You do not have to have index.cfm in your URL with these settings. A similar ISAPI_rewrite setting should also work, but has not yet been tested.