404 Error on REST URL, Coldbox 4.3.0, Lucee 5.2.4

Hi All,
I downloaded Lucee 5.2.4 and Coldbox 4.3.0 and then downloaded a sample app template called SimpleCrudWithREST and put the folder inside my root (see here).
When I browse to http://localhost:8888/SimpleCrudWithREST/index.cfm the page loads fine (see here) but when I click on any of the REST links I get a 404 error (see here).
This does not happen if I use the Commandbox server. Can anyone tell me what is wrong with my Lucee configuration that might be causing this?

Thanks!

Try this:

http://127.0.0.1:8888/SimpleCrudWithREST/index.cfm?event=contacts.add

If that works, then you need to set up routing. See this: https://coldbox.ortusbooks.com/content/full/routing/

That URL did not work either. Just going to use Commandbox instead and avoid the whole issue. Thanks!

For what it’s worth, that non SES url should have worked on a stock Lucee install. I’m curious if you got the same 404 error message or another one.

Thanks!

~Brad

ColdBox/CommandBox Developer Advocate
Ortus Solutions, Corp

E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com

Hi Brad,
It just routes me back to the http://127.0.0.1:8888/SimpleCrudWithREST/index.cfm/contacts/add page where it throws the 404 error when I go to http://127.0.0.1:8888/SimpleCrudWithREST/index.cfm?event=contacts.add. Here is my entire Lucee folder if you would like to check it out Lucee

If it redirects you, then that means the URL is probably working fine. But since you have SES enabled in your app, the redirect is kicking you back over to an SES url. And, of course, SES URLs aren’t going to work.

Thanks!

~Brad

ColdBox/CommandBox Developer Advocate
Ortus Solutions, Corp

E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com

Yes when I turn off SES in Coldbox.cfc the link does work fine. Thanks.