How to do Mikrotik hotspot who redirects the user to the company website, without login page.

Hi guys,

I would like to create a hotspot where after the user clicks on a hotspot pop-up, it will be automatically redirected to the web site of the company.

The current setting is, I have modified the HTML of the login page.
And I have removed the fields user/pass, and there is just information that when the user clicks on the link, he will be redirected to the site of the company. And that is works.

And I would like to omit this step that the user has to click on the link and be redirected to the web site.

How to do it the simplest?

Thanks and best regards
Nikola

Have never used hotspot functionality yet, but I know in beta RoS7 there is some “user manager” functionality that may be germane to your inquiry. Check out the beta threads to see.

Thanks for the help,
But I avoid the testing and development release.
I always use long-term.
So, I would like to do that on long-term version RouterOS.
Without any user registration only redirection, and a time limit of use.

Best regards
Nikola

This is what I use with success;

<head>
  <meta http-equiv="refresh" content="0; URL=https://www.yoururl.com/" />
</head>
<body>
  <p>If you are not redirected in five seconds, <a href="https://www.yoururl.com/">click here</a>.</p>
</body>

Just replace the html code with this.

Thanks for the help,

I’ll do it.

Best regards
Nikola

Also works for me,
Thanks a lot for the help,

best regards
Nikola