CSS文件修改为服务器中的临时php文件(joomla)
我添加了下面的代码以供 css 参考。
JHTML::_('stylesheet', 'example.css', 'components/'._THISCOMPONENT.'/assets/css/');
它在本地工作正常。但是当我尝试在服务器中运行它时,CSS 由于这个原因无法工作 输出 html css 链接
<link rel="stylesheet" href="/components/com_fms/assets/css/css-3391b7d3949af1560b9927c0c3a672b2.php" type="text/css" />
有人知道解决这个问题吗?
I have added this below code for css reference.
JHTML::_('stylesheet', 'example.css', 'components/'._THISCOMPONENT.'/assets/css/');
It is working fine in local.But when i try to run it in the server, the css is not working due to this
output html css link
<link rel="stylesheet" href="/components/com_fms/assets/css/css-3391b7d3949af1560b9927c0c3a672b2.php" type="text/css" />
Do anyone have idea on solving this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,如果将代码添加到模板文件(templates/my_fantastic_template/index.php)中,则该代码可以正常工作。
尝试此代码:
我希望它会有所帮助。
By default this code work correct if it is added in template-file (templates/my_fantastic_template/index.php)
Try this code:
I hope it will be helpfull.
尝试使用
完整的
/templates/system/css/system.css
以及 css 文件的 urlTry using
instead
complet
/templates/system/css/system.css
with your url to the css file