First time poster here. Running NodeJS, apache, routing, MySQL, and a local deployment.
I'm loading a server connect at the top of my .ejs page. Let's call it 'http://.../:my-company'. The SC needs to get the path from the dynamic URL of the calling .ejs page. Yesterday, I had it working using {{$_SERVER.URL.split('/').last(1).toString()}}. This morning, I made some changes to my routes and pushed an update of the routing rules. Today, now instead of the SC returning the correct path from the calling file, it's returning the path to itself. How might have uploading new routing rules changed this behavior? All I did was move some pages from root below a new path called /zone/.
TIA.