更改joomlas默认的favicon路径

时间:2013-05-09 11:42:33

标签: php location favicon joomla3.1

我尝试更改joomlas默认的favicon,我想将它放在我的网络的根目录中。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

根据Joomla Documentationhtml.php会查看favicon的templateroot文件夹。因此,如果你只是加入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;''