如何从URL中删除IP前缀

时间:2015-08-03 14:36:11

标签: php apache .htaccess url ip

在我离开主页后,尝试弄清楚如何删除预先固定到我的网址的IP。

http://www.clpromotions.co.uk/

http://217.199.187.59/clpromotions.co.uk/index.php/about-us

尝试了一切 - 也许这是我想念的简单事情。该网站最近已迁移....

2 个答案:

答案 0 :(得分:0)

使用相关网址路径并在头部添加base

<base href="http://www.clpromotions.co.uk/" /> 

<a href="clpromotions.co.uk/index.php/calendars">Promotional Calendars 2016</a>

或者制作一个constant基本网址并附加到每个链接

Const BASE_URL = 'http://www.clpromotions.co.uk';

<a href="<?=BASE_URL?>/index.php/calendars">Promotional Calendars 2016</a>

或者您可以使用/

的域根启动网址
<a href="/index.php/calendars">Promotional Calendars 2016</a> 

答案 1 :(得分:0)

非常感谢。

我在

下的配置中发现了这个问题
public class User
{
    public string id { get; set; }
    public string username { get; set; }
    public string full_name { get; set; }
    public string profile_picture { get; set; }
}

public class RootObject
{
    public string access_token { get; set; }
    public User user { get; set; }
}

感谢。