【问题标题】:How to remove IP prefix from URL如何从 URL 中删除 IP 前缀
【发布时间】:2015-10-25 17:25:48
【问题描述】:

试图弄清楚一旦我离开主页,如何删除预先固定在我的 URL 上的 IP。

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

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

尝试了所有方法 - 也许这是我缺少的一些简单的东西。该网站最近已迁移....

【问题讨论】:

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

标签: php apache .htaccess url ip


【解决方案1】:

非常感谢。

我在配置下发现了问题

$config['root_path'] =

谢谢。

【讨论】:

    【解决方案2】:

    使用相对url路径并在head中添加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> 
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2018-09-10
      • 1970-01-01
      • 2020-03-31
      • 1970-01-01
      • 2013-06-10
      • 1970-01-01
      • 2016-06-07
      相关资源
      最近更新 更多