Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网站增加了访问者,所以我决定更换服务器以增加容量。我使用 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。
我怎么解决这个问题?原因是什么?
尝试删除 * index.php之前的正斜杠,如下所示:
background: url('index.php/fake-path/images/arrow-3.png');
否则使用相对路径,如下所示:
background: url('../images/arrow-3.png');
请注意,使用第二个选项时,不要忘记更改适用于您的路径。