I have one base URI like https://stackoverflow.com/questions/ask
and a relative URI.
I want to combine them all into one absolute URI.
Examples:
Relative URI:
../
Result:
https://stackoverflow.com/questions
Relative URI:
/abc/kk?6
Result:
https://stackoverflow.com/abc/kk?6
Relative URI:
task.php?ui=4
Result:
https://stackoverflow.com/questions/task.php?ui=4
How can I do this?