| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
m0b1us
Joined: 07 Jan 2008 Posts: 5
|
Posted: Mon Jan 07, 2008 11:40 am Post subject: What is the google sitemap for phpbb3 use mod Rewrite? |
|
|
hello
i've looking for google sitemap for phpbb3 and i'm using PHPBB3 MOD Rewrite Version V0-4-0RC4. what is the right sitemap for phpbb3 using this mods?
plz help
thank you |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
m0b1us
Joined: 07 Jan 2008 Posts: 5
|
Posted: Sun Jan 13, 2008 9:46 am Post subject: Re: What is the google sitemap for phpbb3 use mod Rewrite? |
|
|
| dcz wrote: | This has been asked for many times, as you can see in the related links bellow.
We are on it.
By the way, maybe you should update the mod rewrite, we are running 0.4.0 now
++ |
thanks for the sitemap info
and i have a few question of version 0.4.0
the instruction said
==================================
#-----[ OPEN ]------------------------------------------
#
styles/subsilver2/template/overall_header.html
#
#-----[ FIND ]------------------------------------------
#
<head>
#
#-----[ AFTER, ADD ]------------------------------------------
#
{SEO_BASE_HREF}
#
#-----[ FIND ]------------------------------------------
#
function jumpto()
{
var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
var perpage = '{PER_PAGE}';
var base_url = '{A_BASE_URL}';
if (page !== null && !isNaN(page) && page > 0)
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * perpage);
}
}
#
#-----[ REPLACE WITH ]------------------------------------------
#
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
function jumpto()
{
var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
var perpage = '{PER_PAGE}';
var base_url = '{A_BASE_URL}';
var seo_delim_start = '{SEO_START_DELIM}';
var seo_static_pagination = '{SEO_SATIC_PAGE}';
var seo_ext_pagination = '{SEO_EXT_PAGE}';
if (page !== null && !isNaN(page) && page > 0) {
var seo_page = (page - 1) * per_page;
if ( base_url.indexOf('?') >= 0 ) {
document.location.href = base_url.replace(/&/g, '&') + '&start=' + seo_page;
} else if ( seo_page > 0 ) {
var seo_type1 = base_url.match(/\.[a-z0-9]+$/i);
if (seo_type1 !== null) {
document.location.href = base_url.replace(/\.[a-z0-9]+$/i, '') + seo_delim_start + seo_page + seo_type1;
}
var seo_type2 = base_url.match(/\/$/);
if (seo_type2 !== null) {
document.location.href = base_url + seo_static_pagination + seo_page + seo_ext_pagination;
}
} else {
document.location.href = base_url;
}
}
}
// www.phpBB-SEO.com SEO TOOLKIT END
#
#-----[ OPEN ]------------------------------------------
#
styles/subsilver2/template/viewtopic_body.html
#
#-----[ FIND ]------------------------------------------
#
<a href="#wrapheader">
#
#-----[ REPLACE WITH ]------------------------------------------
#
<a href="{U_VIEW_TOPIC}#wrapheader">
======================================
i didnt find <a href="#wrapheader"> my template is using prosilver what i must edit on viewtopic_body.html and overall_header.html at prosilver template? thank you |
|
|
| Back to top |
|
 |
frechdaxx
Joined: 04 Sep 2007 Posts: 20
|
Posted: Sun Jan 13, 2008 12:56 pm Post subject: Re: What is the google sitemap for phpbb3 use mod Rewrite? |
|
|
| You don't have to apply the subsilver 2 changes at prosilver..Or what do you mean? |
|
|
| Back to top |
|
 |
m0b1us
Joined: 07 Jan 2008 Posts: 5
|
Posted: Sun Jan 13, 2008 1:10 pm Post subject: Re: What is the google sitemap for phpbb3 use mod Rewrite? |
|
|
| frechdaxx wrote: | | You don't have to apply the subsilver 2 changes at prosilver..Or what do you mean? |
this instruction tell me how to update PHPBB3 MOD Rewrite Version V0-4-0RC4.to V0-4-0
it just instruct to edit the code at template subsilver2 while my template is using prosilver
yes frechdaxx i am using prosilver template not subsilver2.. |
|
|
| Back to top |
|
 |
frechdaxx
Joined: 04 Sep 2007 Posts: 20
|
Posted: Sun Jan 13, 2008 1:18 pm Post subject: Re: What is the google sitemap for phpbb3 use mod Rewrite? |
|
|
so you don't have to apply the subsilver2 changes Just edit prosilver:
| Code: |
#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/template/forum_fn.js
#
#-----[ FIND ]------------------------------------------
#
function jumpto()
{
var page = prompt(jump_page, on_page);
if (page !== null && !isNaN(page) && page > 0)
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
}
}
#
#-----[ REPLACE WITH ]------------------------------------------
#
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
function jumpto() {
var page = prompt(jump_page, on_page);
if (page !== null && !isNaN(page) && page > 0) {
var seo_page = (page - 1) * per_page;
if ( base_url.indexOf('?') >= 0 ) {
document.location.href = base_url.replace(/&/g, '&') + '&start=' + seo_page;
} else if ( seo_page > 0 ) {
var seo_type1 = base_url.match(/\.[a-z0-9]+$/i);
if (seo_type1 !== null) {
document.location.href = base_url.replace(/\.[a-z0-9]+$/i, '') + seo_delim_start + seo_page + seo_type1;
}
var seo_type2 = base_url.match(/\/$/);
if (seo_type2 !== null) {
document.location.href = base_url + seo_static_pagination + seo_page + seo_ext_pagination;
}
} else {
document.location.href = base_url;
}
}
}
// www.phpBB-SEO.com SEO TOOLKIT END
#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/template/overall_header.html
#
#-----[ FIND ]------------------------------------------
#
<head>
#
#-----[ AFTER, ADD]------------------------------------------
#
{SEO_BASE_HREF}
#
#-----[ FIND ]------------------------------------------
#
var onload_functions = new Array();
var onunload_functions = new Array();
#
#-----[ AFTER, ADD ]------------------------------------------
#
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
var seo_delim_start = '{SEO_START_DELIM}';
var seo_static_pagination = '{SEO_SATIC_PAGE}';
var seo_ext_pagination = '{SEO_EXT_PAGE}';
// www.phpBB-SEO.com SEO TOOLKIT END
#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/template/viewtopic_body.html
#
#-----[ FIND ]------------------------------------------
#
<a href="#p{postrow.POST_ID}">
#
#-----[ REPLACE WITH ]------------------------------------------
#
<a href="{U_VIEW_TOPIC}#p{postrow.POST_ID}">
#
#-----[ FIND ]------------------------------------------
#
<a href="#wrap" class="top" title="{L_BACK_TO_TOP}">
#
#-----[ REPLACE WITH ]------------------------------------------
#
<a href="{U_VIEW_TOPIC}#wrap" class="top" title="{L_BACK_TO_TOP}">
|
|
|
|
| Back to top |
|
 |
m0b1us
Joined: 07 Jan 2008 Posts: 5
|
Posted: Sun Jan 13, 2008 2:11 pm Post subject: Thanks |
|
|
Thanks frechdaxx |
|
|
| Back to top |
|
 |
|
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |