MyBB Community Forums

Full Version: Google SEO (Friendly Urls)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Friends,

I've installed the Google SEO Plugin and enabled Friendly URLs.
Now everything is fine, the only thing I am not happy with is that if open the site it's:

domain.com

But if I click on the Logo, it changes to:

domain.com/index.php

Is it possible that it doesn't change to index.php?

Thanks for the help!
Admin CP -> Templates & Style -> Templates -> Header Templates -> header

In this template you will find something like this:

<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>

Change it to:

<div class="logo"><a href="{$mybb->settings['bburl']}"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
Great, thank you very very much!