Brenot,
By default the logo links to “/” , to modify it to point to where ever you want, you can edit the file ‘templates/ja_brisk/tpls/blocks/header.php”
around line #53 you will see
[PHP]<a href=”<?php echo JURI::base(true) ?>/” title=”<?php echo strip_tags($sitename) ?>”<?php echo $logoimage ?>>[/PHP]
that is where your anchor is created for the logo, if you wanted it to point to index.php you could change it to
[PHP]<a href=”<?php echo JURI::base(true) ?>/index.php” title=”<?php echo strip_tags($sitename) ?>”<?php echo $logoimage ?>>[/PHP]
Hopefully that answers your question.