Maybe a silly question.
I want to make a webpage only accessible by scanning a qr-code.
One of the things I need to have is a page with a url like /mypage,html?source=qr
Where can I change the setting that I can add that tag? Because now I’m not allowed to do that.
Is it even possible to make pages/url’s with a tag in MODX?
You can add arbitrary request parameters (?source=qr) to every MODX page URL.
MODX always loads the page /mypage.html and you can then process the GET request parameters with a snippet (as @dejaya explained).
There’s also the MODX function sendRedirect that can be used to redirect to another page.