This may be a noobish question, but I can’t figure out what’s going on, but anyway.. I want the mikrotik to redirect to a specific url after login. I managed to do that by setting the value of the dst field (in the form located in login.html) to the url I need to redirect to. The thing is it’s not working as expected when using an url with parameters, I guess somewhere in the middle the url gets encoded and replaces all my & for & so my backend gets all incorrectly named parameters (except for the first parameter of the url).
Hello
open alogin.html file from hotspot Folder with html editor then replace $(link-redirect) with your address.
Then it upload on your router
for Example :
Your answer makes me feel that I’m terrible at communicating ideas or that you didn’t get what I was trying to say, at all. I got the redirect part just right. The problem is with the params of the redirect url.
What if you try to send the parameters without an ampersand (&) but with another character instead (+ for example?) and then parse that on your server to extract the arguments?
Or just strip the ‘amp;’ server-side?
I know this is a more like a botch rather than a long term solution.