我有在大多数区域使用绝对寻址的脚本,现在我需要将它们更改为相对寻址。但是我在这里面临的问题是,例如,如果我有一个名为
www.example.com现在我想更改 php 中的链接
<link href="<?php print $theme; ?>style.css" type="text/css" rel="stylesheet" />
<link href="<?php print $theme; ?>css/colorpicker.css" type="text/css" rel="stylesheet" />
到
<link href="http://www.example.com/<?php print $theme; ?>style.css" type="text/css" rel="stylesheet" />
<link href="http://www.example.com/<?php print $theme; ?>css/colorpicker.css" type="text/css" rel="stylesheet" />
但我最终得到了这个结果
<link href="http://www.example.com/http://www.example.com/themes/in/style.css" type="text/css" rel="stylesheet" />
<link href="http://www.example.com/http://www.example.com/themes/in/css/colorpicker.css" type="text/css" rel="stylesheet" />
我知道某处有问题,但我仍然无法让它工作。任何有关正确格式的帮助将不胜感激。对不起,如果我的问题标题不合适。