phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
Migrating webmedic - phpBB SEO advanced mod Rewrite
Goto page Previous  1, 2, 3  Next
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB mod Rewrite
::  
Author Message
linus
PR0
PR0


Joined: 02 Jul 2006
Posts: 56

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 6:14 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

ok

phpBB-SEO-Advanced-mod-Rewrite_V_0.0.2
phpBB_SEO_Dynamic_Metatags_V_0.0.1
mx_Sitemaps_V_0.0.1
mx_ggsitemaps_v1.0.1
mx_Sitemaps_Auto_link_Add_on_phpBB_V_0.1

------------------>+ MOD Very Happy

I've two problem. Embarassed

---one

rewrite actived :







?????????????????????

---two





the image is too much large Embarassed

task to have made all good this time...

I've sitemap.php & sitemaps.php

--->

My htaccess :

Code:
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
 
RewriteRule ^.+/([^/]+\.html)$ /index.php [R=301,L] 
RewriteRule ^.+-vc([0-9]+)\.html$ /index.php?c=$1 [QSA,L]
RewriteRule ^.+-vf([0-9]+)-([0-9]+)\.html$ /viewforum.php?f=$1&start=$2 [QSA,L]
RewriteRule ^.+-vf([0-9]+)\.html$ /viewforum.php?f=$1 [QSA,L] 
RewriteRule ^.+-vt([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L] 
RewriteRule ^.+-vt([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L]
RewriteRule ^post([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L]
RewriteRule ^member([0-9]+)\.html$ /profile.php?mode=viewprofile&u=$1 [QSA,L]

RewriteRule ^sitemaps.xml$ /sitemap.php [L]
RewriteRule ^forum-sitemap-([0-9]+).xml$ /sitemap.php?fid=$1 [L]
RewriteRule ^sitemap-forum.xml$ /sitemap.php?forum [L]

RewriteRule ^sitemaps([0-9]+)\.html$ /sitemaps.php?c=$1 [QSA,L]
RewriteRule ^sitemaps\.html$ /sitemaps.php [QSA,L]
RewriteRule ^forum-m\ap\.html$ /sitemaps.php?fim [QSA,L]
RewriteRule ^forum-m\ap([0-9]+)-([0-9]+)\.html$ /sitemaps.php?fmp=$1&start=$2 [QSA,L]
RewriteRule ^forum-m\ap([0-9]+)\.html$ /sitemaps.php?fmp=$1 [QSA,L]
RewriteRule ^.+-fmp([0-9]+)-([0-9]+)\.html$ /sitemaps.php?fmp=$1&start=$2 [QSA,L]
RewriteRule ^.+-fmp([0-9]+)\.html$ /sitemaps.php?fmp=$1 [QSA,L]
RewriteRule ^.+-sc([0-9]+)\.html$ /sitemaps.php?c=$1 [QSA,L]


thanks for your aid, without of you I would not be successful. thanks for your patience. .. Wink

/includes/page_tail.php

Code:
//Begin mx_Sitemaps Auto link Add On http://www.phpbb-seo.com/
$mx_forum_id =( isset($HTTP_GET_VARS[POST_FORUM_URL]) )? intval($HTTP_GET_VARS[POST_FORUM_URL]) : 0;
$root_url = 'http://www.forum-linux-italia.com/';
if ( $mx_forum_id != 0 )
{
   $mx_link_tmp = append_sid($root_url . format_url($forum_row['forum_name']) . '-fmp' .$mx_forum_id . '.html');
   $link_title = $forum_row['forum_name'].' - Map';
   $mx_sitemap_link = '<a href="'.$mx_link_tmp.'" class="copyright" title="'.$link_title.'">'.$link_title.'</a>';
   $mx_sitemap_link .= '<br /><a href="'.append_sid($root_url . 'forum-map.html').'" class="copyright" title="Forum Map">Forum Map</a>';
   $mx_sitemap_link .= '<br /><a href="'.append_sid($root_url . 'sitemaps.html').'" class="copyright" title="'.$board_config['sitename'].' : Site Map">Site Map</a>';
}
else
{
   $mx_sitemap_link = '<a href="'.append_sid($root_url . 'forum-map.html').'" class="copyright" title="Forum Map">Forum Map</a>';
   $mx_sitemap_link .= '<br /><a href="'.append_sid($root_url . 'sitemaps.html').'" class="copyright" title="'.$board_config['sitename'].' : Site Map">Site Map</a>';
}
//End mx_Sitemaps Auto link Add On http://www.phpbb-seo.com/

_________________
...
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15131

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 7:26 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

linus wrote:
ok

phpBB-SEO-Advanced-mod-Rewrite_V_0.0.2
phpBB_SEO_Dynamic_Metatags_V_0.0.1
mx_Sitemaps_V_0.0.1
mx_ggsitemaps_v1.0.1
mx_Sitemaps_Auto_link_Add_on_phpBB_V_0.1


Good Very Happy

linus wrote:

thanks for your aid, without of you I would not be successful. thanks for your patience. .. Wink


You're welcome Wink

So mx Google sitemap is perfectly installed and ready for internal mod rewrite, you can activate mx Google sitemaps mod rewrite in it's ACP and submit sitemaps.xml to Google, a link is provided in ACP.

Then, you need to un-comment some lines of code in the append_sid function (includes/sessions.php), do make it faster, here is the append_sid function you should use :
Code:

function append_sid($url, $non_html_amp = false)
{
   global $SID;   
   // www.phpBB-SEO.com SEO TOOLKIT BEGIN
   global $phpEx, $seo_cat_name, $seo_forum_name, $seo_topic_name;
   $amp = ($non_html_amp) ? '&' : '&amp;';
   $find = array(   $amp.'start=0',
         $amp.'postdays=0',
         $amp.'topicdays=0',
         $amp.'postorder=asc',
      );
   $url = str_replace ($find, "", $url);
   if ( $seo_cat_name ) {
      $urlin = array(   "'(?)index.".$phpEx."\?c=([0-9]+)(".$amp."){0,1}'",
            // mx Sitemaps Module (cat URL injection)
            "'(?)sitemaps([0-9]+)\.html(".$amp."){0,1}'",
         );
      $urlout = array( "".format_url($seo_cat_name)."-vc\\1.html".if_query('\\2')."",
             // mx Sitemaps Module (cat URL injection)
             "".format_url($seo_cat_name)."-sc\\1.html".if_query('\\2')."",
         );
      $url = preg_replace($urlin, $urlout, $url);
   }
   if ( $seo_forum_name ) {
      $urlin = array( "'(?)viewforum.".$phpEx."\?f=([0-9]+)".$amp."start=([0-9]+)(".$amp."){0,1}'",
            "'(?)viewforum.".$phpEx."\?f=([0-9]+)(".$amp."){0,1}'",
            // mx Sitemaps Module (forum URL injection + pagination)
            "'(?)forum-map([0-9]+)\.html".$amp."start=([0-9]+)(".$amp."){0,1}'",
            "'(?)forum-map([0-9]+)\.html(".$amp."){0,1}'",
         );
      $urlout = array( "".format_url($seo_forum_name)."-vf\\1-\\2.html".if_query('\\3')."",
             "".format_url($seo_forum_name)."-vf\\1.html".if_query('\\2')."",
             // mx Sitemaps Module (forum URL injection + pagination)
             "".format_url($seo_forum_name)."-fmp\\1-\\2.html".if_query('\\3')."",
             "".format_url($seo_forum_name)."-fmp\\1.html".if_query('\\2')."",
         );
      $url = preg_replace($urlin, $urlout, $url);
   }
   if ($seo_topic_name) {
      $urlin = array(   "'(?)viewtopic.".$phpEx."\?t=([0-9]+)".$amp."start=([0-9]+)(".$amp."){0,1}'",
            "'(?)viewtopic.".$phpEx."\?t=([0-9]+)(".$amp."){0,1}'",
         );
      $urlout = array("".format_url($seo_topic_name)."-vt\\1-\\2.html".if_query('\\3')."",
            "".format_url($seo_topic_name)."-vt\\1.html".if_query('\\2')."",
         );
      $url = preg_replace($urlin, $urlout, $url);
   }
   $urlin = array(   "'(?)viewtopic.".$phpEx."\?p=([0-9]+)(".$amp."){0,1}'",
         "'(?)profile.".$phpEx."\?mode\=viewprofile".$amp."u=([0-9]+)(".$amp."){0,1}'",
      );
   $urlout = array( "post\\1.html".if_query('\\2')."",
          "member\\1.html".if_query('\\2')."",
      );
   $url = preg_replace($urlin, $urlout, $url);
   $url = (substr($url, strlen($url) - 1, 1) == '?') ? substr($url, 0, strlen($url) - 1) : $url;
   // www.phpBB-SEO.com SEO TOOLKIT END

   if ( !empty($SID) && !preg_match('#sid=#', $url) )
   {
      $url .= ( ( strpos($url, '?') !== false ) ?  ( ( $non_html_amp ) ? '&' : '&amp;' ) : '?' ) . $SID;
   }

   return $url;
}


This will activate title injection in mx Sitemaps links.

then, it's strange you cannot use forum-map.html, because the correct rewriterule is here.

Anyway, some where useless so try this :
Code:

Options +FollowSymlinks
RewriteEngine On
RewriteBase /
 
RewriteRule ^.+/([^/]+\.html)$ /index.php [R=301,L]
RewriteRule ^.+-vc([0-9]+)\.html$ /index.php?c=$1 [QSA,L]
RewriteRule ^.+-vf([0-9]+)-([0-9]+)\.html$ /viewforum.php?f=$1&start=$2 [QSA,L]
RewriteRule ^.+-vf([0-9]+)\.html$ /viewforum.php?f=$1 [QSA,L]
RewriteRule ^.+-vt([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L]
RewriteRule ^.+-vt([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L]
RewriteRule ^post([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L]
RewriteRule ^member([0-9]+)\.html$ /profile.php?mode=viewprofile&u=$1 [QSA,L]

RewriteRule ^sitemaps\.html$ /sitemaps.php [QSA,L]
RewriteRule ^forum-m\ap\.html$ /sitemaps.php?fim [QSA,L]
RewriteRule ^.+-fmp([0-9]+)-([0-9]+)\.html$ /sitemaps.php?fmp=$1&start=$2 [QSA,L]
RewriteRule ^.+-fmp([0-9]+)\.html$ /sitemaps.php?fmp=$1 [QSA,L]
RewriteRule ^.+-sc([0-9]+)\.html$ /sitemaps.php?c=$1 [QSA,L]

RewriteRule ^sitemaps\.xml$ /sitemap.php [L]
RewriteRule ^forum-sitemap-([0-9]+)\.xml$ /sitemap.php?fid=$1 [L]
RewriteRule ^sitemap-forum\.xml$ /sitemap.php?forum [L]


Once uploaded, try activating internal mod rewrite in mx Sitemaps ACP, and test links, they should be title injected Wink


Your auto link code looks ok, you still need to edit the template though to show up links, look at the install.

For the image size look in the mod's template files, and look for TOPIC_FOLDER_IMG, it's the topic image, and LAST_FORUM_IMG_ALT, it's the forum image, so that you'll find the correct image tag where the image size is set ( height & width ) and adjust the values to your images size.

I noticed that you did not lock the www prefix in you URL, and it's better to do it since you allow both on your server.

++

_________________
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
Visit poster's website
linus
PR0
PR0


Joined: 02 Jul 2006
Posts: 56

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 8:07 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

Very Happy

Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^forum-linux-italia\.com$ [NC]
RewriteRule ^(.*) http://www.forum-linux-italia.com/$1 [QSA,L,R=301]

Options +FollowSymlinks
RewriteEngine on
RewriteBase /
 
RewriteRule ^.+/([^/]+\.html)$ /index.php [R=301,L]
RewriteRule ^.+-vc([0-9]+)\.html$ /index.php?c=$1 [QSA,L]
RewriteRule ^.+-vf([0-9]+)-([0-9]+)\.html$ /viewforum.php?f=$1&start=$2 [QSA,L]
RewriteRule ^.+-vf([0-9]+)\.html$ /viewforum.php?f=$1 [QSA,L]
RewriteRule ^.+-vt([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L]
RewriteRule ^.+-vt([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L]
RewriteRule ^post([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L]
RewriteRule ^member([0-9]+)\.html$ /profile.php?mode=viewprofile&u=$1 [QSA,L]

RewriteRule ^sitemaps\.html$ /sitemaps.php [QSA,L]
RewriteRule ^forum-m\ap\.html$ /sitemaps.php?fim [QSA,L]
RewriteRule ^.+-fmp([0-9]+)-([0-9]+)\.html$ /sitemaps.php?fmp=$1&start=$2 [QSA,L]
RewriteRule ^.+-fmp([0-9]+)\.html$ /sitemaps.php?fmp=$1 [QSA,L]
RewriteRule ^.+-sc([0-9]+)\.html$ /sitemaps.php?c=$1 [QSA,L]

RewriteRule ^sitemaps\.xml$ /sitemap.php [L]
RewriteRule ^forum-sitemap-([0-9]+)\.xml$ /sitemap.php?fid=$1 [L]
RewriteRule ^sitemap-forum\.xml$ /sitemap.php?forum [L]










http://www.forum-linux-italia.com/forum-map.html ... it does not work Embarassed

What tasks you?

_________________
...
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15131

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 8:17 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

Fro the forum map, try replacing this one :

Code:
RewriteRule ^forum-m\ap\.html$ /sitemaps.php?fim [QSA,L]


with :

Code:
RewriteRule ^forum-map\.html$ /sitemaps.php?fim [QSA,L]


Then, it seems all other links are working. One thing though, It seems you are not using the default files for mx Sitemaps, http://www.forum-linux-italia.com/linux-e-kernel-fmp2.html

we should not see this pagination -http://www.forum-linux-italia.com/guida-completa-installiamo-o-aggiorniamo-il-kernel-vt60.html?start=10

It look like you used the webmedic premoded files.

Put back the default files Wink

You still did not edited you overall_footer.tpl or did not implement the codes changes in page_tail.php for the auto link add on, look here.

You're close Wink

_________________
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
Visit poster's website
linus
PR0
PR0


Joined: 02 Jul 2006
Posts: 56

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 8:24 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

GOOD

CODE :

Code:
RewriteRule ^sitemaps\.html$ /sitemaps.php [QSA,L]
RewriteRule ^forum-m\ap\.html$ /sitemaps.php?fim [QSA,L]
RewriteRule ^.+-fmp([0-9]+)-([0-9]+)\.html$ /sitemaps.php?fmp=$1&start=$2 [QSA,L]
RewriteRule ^.+-fmp([0-9]+)\.html$ /sitemaps.php?fmp=$1 [QSA,L]
RewriteRule ^.+-sc([0-9]+)\.html$ /sitemaps.php?c=$1 [QSA,L]


My NEW_CODE :

Code:
RewriteRule ^sitemaps\.html$ /sitemaps.php [QSA,L]
RewriteRule ^forum-map\.html$ /sitemaps.php?fim [QSA,L]
RewriteRule ^.+-fmp([0-9]+)-([0-9]+)\.html$ /sitemaps.php?fmp=$1&start=$2 [QSA,L]
RewriteRule ^.+-fmp([0-9]+)\.html$ /sitemaps.php?fmp=$1 [QSA,L]
RewriteRule ^.+-sc([0-9]+)\.html$ /sitemaps.php?c=$1 [QSA,L]


Very Happy Wink


OK!!! Very Happy Very Happy Very Happy Very Happy Very Happy

_________________
...


Last edited by linus on Mon Jul 03, 2006 8:56 pm; edited 1 time in total
Back to top
Visit poster's website
linus
PR0
PR0


Joined: 02 Jul 2006
Posts: 56

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 8:43 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

Quote:
Then, it seems all other links are working. One thing though, It seems you are not using the default files for mx Sitemaps, http://www.forum-linux-italia.com/linux-e-kernel-fmp2.html

we should not see this pagination -http://www.forum-linux-italia.com/guida-completa-installiamo-o-aggior niamo-il-kernel-vt60.html?start=10

It look like you used the webmedic premoded files.

Put back the default files


Question Question Question

mx_Sitemaps_V_0.0.1 ""file default" --> my root???

Thank's.

Update index Wink

_________________
...
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15131

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 8:56 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

Good Very Happy

The auto link works perfect.

Sitemap links perfect Wink

the link I am talking about it the second page links of "Guida Completa : Installiamo o Aggiorniamo il Kernel!" here http://www.forum-linux-italia.com/linux-e-kernel-fmp2.html

So just re upload all the mx sitemaps files, the one supposed to go to the phpbb includes/ folder ( phpbb/root/includes/*.* => root/includes/*.*).
And it should be fixed.

I forgot to tell you that you should get rid of sitemap.php in you Google sitemaps account, keeping it together with sitemaps.xml is useless since they are the exact same Wink


And in the templates :
Quote:
<img style="padding:0px; margin:-5px;" src="{lasttopic.forum.topics.LAST_TOPIC_FOLDER_IMG}" border="0" width="19" height="18" alt="{lasttopic.forum.topics.LAST_TOPIC_TITLE}" title="{lasttopic.forum.topics.LAST_TOPIC_ALT_IMG}"/>


and :

Quote:
<img style="padding:0px; margin:-7px;" src="{catrow.forumrow.FORUM_FOLDER_IMG}" border="0" height="25" width="46" alt="{catrow.forumrow.FORUM_NAME}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}"/>


Are the kind of pattern o search for. Sorry, but it's difficult to point them all as they are quite many, but, they all look the same, and the code change are very easy Wink

++

_________________
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
Visit poster's website
linus
PR0
PR0


Joined: 02 Jul 2006
Posts: 56

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 9:17 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

Thank's. Wink

1 Delete sitemap.php --> account google
2 Images OK
3 Copy includes/*.* --> (web)/includes/*.*

Very Happy they are convinced that I must study English Embarassed

All ok? Very Happy

--------->

I have not understood the history of the link well but I hope that the problem has been resolved. you six state much kind one Wink


http://www.forum-linux-italia.com/sitemaps.html Wink

_________________
...
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15131

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 9:32 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

Every thing is perfect and I think I have found the pagination problem, it's due to this damned wrapping function that's adding spaces in lines of code, erf.
So the code I posted for happend_sid has an extra space (" ") in it, which causes us trouble.

At least this line was affected :

Code:
$urlin = array(   "'(?)viewtopic.".$phpEx."\?t=([0-9]+)".$amp."start=([0-9]+)(".$amp.") {0,1}'",
            "'(?)viewtopic.".$phpEx."\?t=([0-9]+)(".$amp."){0,1}'",
         );


(".$amp.") {0,1} should be (".$amp."){0,1}

As a turn around you can quote this post and copy the code from the posting window, so that it will be clean.

For the link thing if you are talking about the last part of the mod rewrite install, yes, there is some code changes suggested to link back to this site, and actually the licence is asking for at least a link, which is done here using mx Sitemaps so, it's kind of ok, but do not hesitate to support this project, we all want this project to last and go further for our great and shared satisfaction Wink

You will have SEO results.

Today is 2 pages listed and one cached in Google, please come tell us what happened in a month Wink

The one convinced you should learn English should come and chat with us here Wink

++

_________________
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
Visit poster's website
linus
PR0
PR0


Joined: 02 Jul 2006
Posts: 56

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 10:16 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

Quote:
(".$amp.") {0,1} should be (".$amp."){0,1}


OK Wink

Task that to my next vacations I will go in England Wink



Thank's. Wink Cool

_________________
...
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15131

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Mon Jul 03, 2006 10:22 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

Yessss !

And prego Wink

Tutto perfetto:D

++

_________________
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
Visit poster's website
linus
PR0
PR0


Joined: 02 Jul 2006
Posts: 56

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Tue Jul 04, 2006 6:48 am    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite




Thank's. Wink

_________________
...
Back to top
Visit poster's website
linus
PR0
PR0


Joined: 02 Jul 2006
Posts: 56

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Tue Jul 04, 2006 5:19 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

last modifications Very Happy

-------------one



--------------two



--->

one : it is possible that it becomes :

Forum Map - Site Map

--->

two : it is possible to remove the first one Forum Linux Italia or to put a space?


Thank's...aesthetic. Wink

_________________
...
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15131

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Tue Jul 04, 2006 7:21 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

linus wrote:

one : it is possible that it becomes :

Forum Map - Site Map

For this you just need to open pag_tail.php

And search for :

[url]$mx_sitemap_link .= '<br />[/url]

The first if is for when there are three links outputted (index, forum map, and this forum map while browsing a forum) so the last piece of code appears two times.

In the else, it appears only one.

So you can change them individually (three occurrence total) to:

Code:
$mx_sitemap_link .= ' -


To have all links on the same line. Or play a bit more with the links from here.


linus wrote:

two : it is possible to remove the first one Forum Linux Italia or to put a space?


Thank's...aesthetic. Wink


Well, this is defined as the $board_config['sitename'], so it must either be what you entered there in ACP, or some mess up in the templates.
But I think it's first choice.

++

_________________
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
Visit poster's website
linus
PR0
PR0


Joined: 02 Jul 2006
Posts: 56

Migrating webmedic - phpBB SEO advanced mod RewritePosted: Tue Jul 04, 2006 7:40 pm    Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite

heart thanks, now I must only wait for a month Wink Very Happy

_________________
...
Back to top
Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB mod Rewrite
Page 2 of 3 Goto page Previous  1, 2, 3  Next

Navigation Similar Topics

Jump to: