How to create an App (Tile) on the My Apps Dashboard with a redirect?
Solved
Support
-
I got a user request to add a "Tile"/app to the My Apps Dashboard that only leads to an external URL (our NAS in this case).
How can I do that easily?
(I tried Surfer but php neither htaccess redirections worked)
-
What @fbartels said. Put this in index.html or surfer (replace url):
<!DOCTYPE html> <html> <head> <title>HTML Meta Tag</title> <meta http-equiv = "refresh" content = "2; url = https://www.cloudron.io" /> </head> <body> <p>Will redirect shortly to https://www.cloudron.io/.</p> </body> </html>
-
What @fbartels said. Put this in index.html or surfer (replace url):
<!DOCTYPE html> <html> <head> <title>HTML Meta Tag</title> <meta http-equiv = "refresh" content = "2; url = https://www.cloudron.io" /> </head> <body> <p>Will redirect shortly to https://www.cloudron.io/.</p> </body> </html>
-
@girish I just tried doing that just to try it out, worked perfectly
-
-