我尝试更改joomlas默认的favicon,我想将它放在我的网络的根目录中。我怎么能这样做?
答案 0 :(得分:0)
根据Joomla Documentation,html.php
会查看favicon的template
和root
文件夹。因此,如果你只是加入root
,它就会显示出来。
// Try to find a favicon by checking the template and root folder
$path = $directory . DS;
$dirs = array( $path, JPATH_BASE . DS );
foreach ($dirs as $dir ) {
$icon = $dir . 'favicon.ico';
if (file_exists( $icon )) {
$path = str_replace( JPATH_BASE . DS, '', $dir );
$path = str_replace( '\\', '/', $path );
$this->addFavicon( JURI::base(true).'/'.$path . 'favicon.ico' );
break;''