我已经安装了一个wordpress网站,我有很多指向同一网站的其他各个页面的链接。但每个链接都指向页面的绝对路径。
代表:
关于页面的链接应为
$http({
url: "/registration.aspx/registerUser",
method: "POST",
data: {loginId: userid, password: passwrd, Verified: 0, IdType: idtype, UserName: uname}
}).success(function(data, status) {
$scope.data = data;
// redirect
$window.location='http://localhost:26430/address.aspx';
}).error(function(data, status) {
$scope.status = status;
});
但现在是
About -> www.ecwpamp.com/about
我该如何解决这个问题?