kohana 2 hooks 移动重定向
我在钩子目录中放置了一个移动钩子来查找移动设备并重定向到适当的控制器。我的问题是,我是否想在移动页面上放置一个链接,以便可以选择查看完整的网站。如何绕过钩子。完成此任务的正确方法是什么?
I placed a mobile hook in the hook directory to look for mobile devices and redirect to the appropriate controller. My question is if I want to put a link on the mobile pages to have the option to view the full site. How would by pass the hook. What is the correct way for this to be accomplished..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几个选项:
1) 当您重定向到移动站点时,添加一个 url 参数,移动控制器将检查该参数并将适当的链接添加回完整站点。例如重定向到 http://m.yoursite.ext/?fromFullSite
2) 移动控制器可以在 $_SERVER 标头中查找引用者并查看用户是否来自完整站点,例如
Couple of options:
1) When you redirect to the mobile site add a url parameter that the mobile controller will check for and add the appropriate link back to the full site. Eg redirect to http://m.yoursite.ext/?fromFullSite
2) The mobile controller can look for the referer in the $_SERVER headers and see if the user came in from the full site, eg