I am stumped, I have the following situation. I've got a page docs.md and an image image2.png in the same grav folder:
/user/pages/06.onboarding/03.test/
The page has in the markdown an image link:

nginx/grav serves up the page at URL
http://xxxxxx.com/onboarding/test
but the image doesn't load in the browser, and in the HTML source, the image tag is rendered by Grav to be:
<img alt="connect" src="/user/pages/06.onboarding/03.test/image2.png" />
This is an invalid path according to the web server apparently. If I manually put in the browser the path to
http://xxxxxx.com/onboarding/test/image2.png
then it shows the image. I also tested and found this strange behavior:

in the page's markdown resolves to this HTML in the served up web page in the browser:
<a href="https://getgrav-grav.netdna-ssl.com/user/pages/01.tour/_easy-to-use/001-dashboard.png?g-6a1d5e19">https://getgrav-grav.netdna-ssl.com/user/pages/01.tour/_easy-to-use/001-dashboard.png?g-6a1d5e19</a>
Any help appreciated. I've got some rewrite going on or something, and I don't know what's doing it. I've looked over everything including nginx config file and I don't see what might be out of place. Thx.