作者:我的灵魂在黑夜P里徘回 | 来源:互联网 | 2023-09-17 23:20
假设我有以下链接:
www.blahblah.com/#!?page=index
如何将其转换为以下之一:
> www.blahblah.com/#!/index(这个应该用mod_rewrite制作)
> www.blahblah.com/ajax/index(仍为mod_rewrite,但#!替换为ajax)
> www.blahblah.com/index(页面将加载像facebook这样的AJAX,但#!将被隐藏)
任何人都可以举例说明上述每个问题吗?
非常感谢!
解决方法:
散列(#)之后的任何内容都不会发送到服务器,因此您无法在服务器端读取它.但是,您可以使用Javascript重定向用户.您要查找的信息将存储在变量window.location.hash中.
在页面加载时,您可以执行以下操作:
hashString = window.location.hash.substring(8);
window.location = 'http://www.blahblah.com/'+hashString;
我们使用子字符串来删除前八个字符(#!?page =),因此我们将留下索引.