我尝试将http://terrychew.com.sg/classes
重定向到http://terrychew.com.sg/math-olympiad-singapore#Primary
,因为如果没有#Primary
,我希望用户看到的标签将不会被选中。
.htaccess将我的#
转换为%23
,但这对我不起作用。我在另一个线程上读到这个代码可以用来重定向url中的hashtags
if (window.location.hash == "#/de/about/blog/") {
window.location = 'http://google.com.ua';
}
但是,在这种情况下,OLD网址包含主题标签。我需要在NEW url包含hashtag时有效的代码。我试过反转代码,但它不起作用