0

在我的网站上有一个用户配置文件,它在 php.ini 中。如果您在哪里写 http://www.youdomain.com/user.php?id=[user id]。它显示带有 id 的用户个人资料。

htaccess 中有没有一种方法,如果写入 http://www.youdomain.com/users/[user id],它将显示页面 http://www.youdomain.com?id=[user id]。

谢谢你。

4

1 回答 1

1
$('.Nav a').each(function(e) {
    var href = e.attr("href");
    if (href === window.location.href) {
        alert(href);
    }
});
于 2012-08-27T08:53:13.293 回答