3

我已经安装了 TP-Link WR1043ND 并使用 Nodogsplash 设置了一个强制门户。所以我的目标是,当客户使用移动设备连接到我的 wifi 时,他们按下 Apple Store 图标或 Google Playstore,以便将它们重定向到页面上以下载应用程序。它工作得很好,在 Apple Store 上也没有问题,但是当涉及到 android 时,它实际上会打开 playstore,然后立即关闭窗口。

我做了一项研究,很多人都在抱怨 android 会强制关闭 Playstore,但我似乎找不到解决方法或解决问题的方法。

我只希望用户按下 google playstore 图像并将其重定向到应用程序页面并停留在那里而不是强制自动关闭它。这样客户就可以在我的应用程序上按“安装”。

<form method='GET' action='$authaction' target='_blank'>
    <input type='hidden' name='tok' value='$tok'>
    <input type='hidden' name='redir' value='https://play.google.com/store/apps/details?id=com.google.android.apps.maps&hl=en'> 
    <input class='btn-os' type='image' src='$imagesdir/GooglePlay_Logo.png'>
</form>

<form method='GET' action='$authaction' target='_blank'> 
    <input type='hidden' name='tok' value='$tok'>
    <input type='hidden' name='redir' value='https://itunes.apple.com/us/app/google-maps-navigation-transit/id585027354?mt=8'>  
    <input class='btn-os' type='image' src='$imagesdir/AppStore_Logo.png'>
</form><br>

那段代码出现在我的强制门户上,当您单击它时,它会将您发送到谷歌地图(在本例中用作示例)

4

0 回答 0