always redirect the lucee 8888 welcome page to /index.cfm
Description
Activity
Show:
Zac Spitzer 9 August 2021 at 12:31
fixed a typo https://github.com/lucee/lucee-installer/commit/dd49d6bf5eb78d9de8656c05e2d05970ca816c58
these changes didn’t make it into the 5.3.8.189 release installers, I forgot to manually copy the changes over.
They are in both the Windows and Linux installers for 5.3.8.201
Michael Offner 23 July 2021 at 08:28
@Zac Spitzer can this be set to resolved?
Zac Spitzer 7 June 2021 at 16:32
Fixed
Assignee
Reporter
Zac Spitzer
Zac SpitzerNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
Created 7 June 2021 at 16:29
Updated 9 August 2021 at 12:31
Resolved 26 July 2021 at 14:21
there's a bug in mod_cfml which doesn't trigger creating virtual hosts unless the request url contains .cfc or .cfml https://github.com/viviotech/mod_cfml/issues/37
accessing http://docs.localhost/ doesn't trigger mod_cfml (yet) while http://docs.localhost/index.cfm does.
as a result the first request to http://docs.localhost/ will show the welcome to lucee page, once a .cfm file is referenced, the web context is created and everything works as expected after that.
adding the following code doesn't resolve the underlying mod_cfml problem, but it hides the problem as the /index.cfm triggers mod_cfml
// force mod_cfml to trigger (1.10 still triggers on read path_info, rather than the resolved filename if ( listLast( cgi.request_url, "/" ) neq "index.cfm" ) location url="/index.cfm" addtoken="false";