Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果您在移动网站上,我找到了一个链接到子域的脚本。但是我怎样才能在我的移动网站上有一个按钮来链接到 php 中的完整视图-非子域?
继承人的代码:
if(strstr($_SERVER['HTTP_USER_AGENT'], 'iPhone') || strstr($_SERVER['HTTP_USER_AGENT'], 'Android')) { header('Location: http://m.ihreseite.ch'); exit(); }
谢谢
这可以给你一个想法。您可以将其基本设置为会话并获取此会话变量。如果访问者选择移动网站或真实网站,请检查每个页面。然后将他们重定向到他们想要浏览的网站。
您可以设置一个变量来标记您希望留在整个站点上,然后将其保存在会话或 cookie 中。你可以在前面的问题(或这个问题)中看到一个相同的例子。