CSS在url中有index.php

时间:2013-11-01 02:29:31

标签: php css joomla1.5

我的网站增加了访问者,因此我决定更改服务器以增加容量。我使用joomla 1.5和Ja Teline IV模板。

当我更改服务器时,所有css都有背景图像,相对路径显示如下:

原始路径:

url('fake-path/images/arrow-3.png')

css缓存中的路径:

url('/index.php/fake-path/images/arrow-3.png')

路径中有index.php。

我该如何解决这个问题?是什么原因造成的?

1 个答案:

答案 0 :(得分:0)

尝试删除* index.php 之前的正斜杠:

background: url('index.php/fake-path/images/arrow-3.png');

否则使用相对路径:

background: url('../images/arrow-3.png');

请注意,使用第二个选项时,请不要忘记更改适用于您的路径。