How to get the current page URL including arguments? #769
-
Hello, I need help with getting the current URL. Lets say we have Best regards |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Oh, I think I found a solution myself.
Is it a good solution or would you prefer a other way? Update 31.03.2022:Me helps this as well: https://stackoverflow.com/questions/6768793/get-the-full-url-in-php |
Beta Was this translation helpful? Give feedback.
-
You could use the following for the URL including arguments:
Datenstrom Yellow uses clean URLs. Instead of passing arguments with query strings it uses location arguments. Instead of Hope this helps. |
Beta Was this translation helpful? Give feedback.
You could use the following for the URL including arguments:
Datenstrom Yellow uses clean URLs. Instead of passing arguments with query strings it uses location arguments. Instead of
https://example.com/search?query=yellow
it useshttps://example.com/search/query:yellow/
. Perhaps the API documentation needs a few more examples for developers.Hope this helps.