在htaccess中,我想更改一个旧的url:
$(document).ready(function () {
var url = window.location.href;
$('a.list-group-item').each(function () {
if (this.href == url) {
$(this).addClass('active');
return false; // exit the loop
}
});
});
到
http://olddomain.com/n/1234/permatitle
但是我尝试过的任何方式,重定向均不起作用。