下面的代码运行良好。这是我的问题:窗口 url 重定向,但原始 url 未记录在我的浏览器历史记录中。
例如,如果我访问“http://example.com/page1”,浏览器会重定向到“http://example.com/test”。但是,我需要访问的原始 URL(“http://example.com/page1”)显示在我的浏览器历史记录中,以便我可以在不同的函数中调用它。
无论如何在重定向之前获取访问的原始网址以登录我的浏览器的历史记录?
<!-- script to enable age verification cookies and ensure people have age checked -->
<script type="text/javascript">
$(document).ready(function(){
if (window.location =="http://example.com/home") {//do nothing
} else {
window.location = "http://example.com/test";
}
});
</script>