我想创建一个像craiglist.org的网站。如果您访问该网站并单击任何一个城市,它将重定向到城市子域。之后,只要你去craiglist.org,它就会将你重定向到城市子域。所以我需要将城市/国家名称保存到我客户的机器上。
起初我以为我可以通过设置过期时间来完成Cookie。我试过了,但过期时间不起作用,因为当我关闭浏览器时意味着当会话结束时它不再获取cookie。
但是,如果它可以使用cookie那么它也可能不适合目的地,就好像我从Mozilla浏览网站并关闭并使用IE打开网站它应该将我重定向到访问过的网站,这是不可能的cookie我想?
你可以给我一些建议吗?我怎么能做到这一点。我将使用Codeigniter / Php。进行应用程序由于 守门
答案 0 :(得分:2)
cookie是正确的方法。 你不能实现跨浏览器的东西...你可以使用Flash cookies或重新检测IP地址等但这是愚蠢的......
好吧craiglist.org似乎根据我的IP地址来自哪里重定向我。 为此,您应该查看此网站:http://www.maxmind.com/app/geolitecity一般来说,您应始终为用户提供手动切换的可能性。
从可用性优化的角度来看,我建议采用以下方案:
最简单的bset解决方案是使用php设置cookie,然后执行标题重定向!
这样你就可以消除javascript,这可以被关闭或者其他东西。
只需使用这个php命令:
setcookie("city", $value, time()+(86400*365));
或类似的东西。继承人手册:
http://php.net/manual/en/function.setcookie.php
您可以使用
检查Cookie值if($_COOKIE['city'] != '')
编辑:
在困惑的情况下,我现在有一个工作示例,只需将其粘贴到php文件中并将其保存到您的网络服务器:)不需要检查子网站,因为您说您正在重定向到外部网站(子域名)。 请记住,如果将其设置在另一个子域中,则无法从子域访问cookie! maby这是你的问题,因此检查并重定向到bootstrap文件。
好吧,你走了。任何问题?发表评论! <?
/* this is if we are at a subsite. you wont need that as it will be external subdomains anway just for the purpose of a working example here.*/
if($_GET['subsite']!="") {
/* the change link has the paramenter userselection which overrides any autoamtic detection by cookie or ip or whatever, this is important if the user wants to change or the automatic change fails or is wrong*/
?>
you are now at the subsite of <?=$_GET['subsite'];?><br/>
<a href="?userselection=true">click here to change</a>
<?
}
else {
/* only try to automatically redirect if we have either cookie or user specified data, but dont if the flag userselectino is true. because the user wants to change.
you could ip-detect the city at this point.
*/
if(($_GET['go']!=''||$_COOKIE['city']!='')&&$_GET['userselection']!='true') {
/* if we had ip detection the priority of it would probably go here */
$target=$_COOKIE['city'];
/* the get varaible overrides the cookie value as its user supplied and more important*/
if($_GET['go']!='') {
$target=$_GET['go'];
}
/* set the cookie, don't care if it already has been set*/
setcookie('city',$target,time()+(86400*365));
/* redirect the user */
header('Location: ?subsite='.$target);
}
else {
/* well we either have neither cookie nor user specified city or the user wanted to change teh city, lets display the selection dialog!*/
?>
hello! select your city:<br/>
<a href="?go=vienna">vienna</a>
<a href="?go=newyork">new york</a>
<?
}
}
?>
答案 1 :(得分:1)
Cookie是执行此操作的最佳方式;如果在关闭浏览器后没有重新加载Web浏览器的cookie,则在创建cookie时必定有问题。
查看setcookie()
:http://us3.php.net/set_cookie的PHP文档,确保提前提供过期时间,例如strtotime("+300 days")
。在服务器上,要回读cookie,只需使用 $ _ COOKIE 超级全局。链接:http://us3.php.net/manual/en/reserved.variables.cookies.php
此外,请务必检查您的浏览器设置以处理Cookie ...也许它会在关闭浏览器后删除Cookie。
最后,您还可以使用用户的IP地址 - 但要注意,如果用户位于同一个局域网(例如大学或公司),则可以共享相同的IP地址。您甚至可以使用IP位置查找服务(例如http://ipinfodb.com/
)自动选择位置您可以转到
在Firefox中查看您网站的Cookie Tools -> Page Info -> Security -> View Cookies
答案 2 :(得分:0)
尝试跨浏览器保存浏览器状态似乎不合逻辑。如果用户切换浏览器,则通常不保证他们具有相同的浏览器设置,除非他们在该网站上有帐户。
如果他们是注册用户,您应该在数据库中存储您需要的任何状态,并在登录时检索它。然后,您始终可以将数据缓存在客户端cookie中,因此您无需每次都获取它。
在我看来,为匿名用户存储不同浏览器的浏览器事件不值得efford。