wordpress链接显示绝对路径而不是相对路径

时间:2016-05-05 06:58:15

标签: php wordpress

我已经安装了一个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

我该如何解决这个问题?

0 个答案:

没有答案