Answer the question
In order to leave comments, you need to log in
How to add an icon for a web page to the iPad home screen if the web page is running as IIS Redirect?
Greetings.
There is a link - application1.company.com . If you go through it, IIS will automatically instantly redirect the user to another page https://application-company.com .
The task is to add an icon to the iPad screen, by clicking on which the user will be sent to application1.company.com .
Ideas?
Answer the question
In order to leave comments, you need to log in
I did not find how to do it by standard means, but I came up with a somewhat perverted solution. But working!
The idea is to keep a simple html page configured to redirect to application1.company.com in a data: URL. Already add this page to the iPad screen. Those. the user clicks on the icon, Safari opens with our html page, and then it redirects to application1.company.com/, from where IIS redirects to https://application-company.com/.
1) Convert html to data: here: software.hixie.ch/utilities/cgi/data/data .
Our html:
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="1;url=http://application1.company.com">
<title>Page Redirection</title>
</head>
<body>
If you are not redirected automatically, follow the <a href='http://application1.company.com'>link to example</a>
</body>
</html>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question