| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
lavinya PR1


Joined: 24 Jul 2006 Posts: 159 Location: Turkey
|
Posted: Mon Jan 08, 2007 9:04 am Post subject: link rel |
|
|
hello all.
How to change rel url?
<link rel="top" href="./index.php" title="Pano Anasayfa" />
<link rel="search" href="./search.php" title="Arama" />
<link rel="help" href="./faq.php" title="SSS" />
<link rel="up" href="index.php" title="Pano Anasayfa" />
to
<link rel="top" href="http://www.lavinya.net/phpBB2/" title="Pano Anasayfa" />
<link rel="search" href="http://www.lavinya.net/phpBB2/arama.htm" title="Arama" />
<link rel="help" href="http://www.lavinya.net/phpBB2/sss.html" title="SSS" />
<link rel="up" href="http://www.lavinya.net/phpBB2/" title="Pano Anasayfa" />
thanks |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15127
|
Posted: Mon Jan 08, 2007 10:22 am Post subject: Re: link rel |
|
|
This is done in :
| Code: | function init_userprefs($userdata)
{ |
In includes/functions.php
here :
| Code: | // Mozilla navigation bar
// Default items that should be valid on all pages.
// Defined here to correctly assign the Language Variables
// and be able to change the variables within code.
//
$nav_links['Search'] = array (
'url' => append_sid('search.' . $phpEx),
'title' => $lang['Search']
);
$nav_links['Help'] = array (
'url' => append_sid('faq.' . $phpEx),
'title' => $lang['FAQ']
);
$nav_links['Author'] = array (
'url' => append_sid('memberlist.' . $phpEx),
'title' => $lang['Memberlist']
);
$nav_links['Chapter Forums'] = array (
'url' => append_sid( "index.".$phpEx),
'title' => $board_config['sitename']
); |
you can add the full URL before the scripts names :
| Code: | $nav_links['Chapter Forums'] = array (
'url' => append_sid( "http://www.example.com/phpBB/index.".$phpEx),
'title' => $board_config['sitename']
); |
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
lavinya PR1


Joined: 24 Jul 2006 Posts: 159 Location: Turkey
|
Posted: Mon Jan 08, 2007 10:28 am Post subject: Re: link rel |
|
|
big thanks dcz thanks... |
|
|
| Back to top |
|
 |
lavinya PR1


Joined: 24 Jul 2006 Posts: 159 Location: Turkey
|
Posted: Mon Jan 08, 2007 10:51 am Post subject: Re: link rel |
|
|
dcz. Ok. works.
1 line excluding.
view source code:
<link rel="top" href="http://www.lavinya.net/phpBB2/" title="Pano Anasayfa" />
<link rel="search" href="http://www.lavinya.net/phpBB2/arama.htm" title="Arama" />
<link rel="help" href="http://www.lavinya.net/phpBB2/sss.html" title="SSS" />
<link rel="up" href="index.php" title="Pano Anasayfa" />
but "up rel" where? I using "remove index.php mod".
<link rel="up" href="index.php" title="Pano Anasayfa" /> must to
<link rel="up" href="http://www.lavinya.net/phpBB2/" title="Pano Anasayfa" /> |
Last edited by lavinya on Mon Jan 08, 2007 10:55 am; edited 1 time in total |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15127
|
|
| Back to top |
|
 |
lavinya PR1


Joined: 24 Jul 2006 Posts: 159 Location: Turkey
|
Posted: Mon Jan 08, 2007 11:00 am Post subject: Re: link rel |
|
|
| re thanks dcz. |
|
|
| Back to top |
|
 |
|
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |