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  
 
   
No *.xml files
Goto page 1, 2  Next
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB SEO TooLKit  » GYM Sitemaps
::  
Author Message
Joerg



Joined: 10 May 2007
Posts: 24

No *.xml filesPosted: Thu May 10, 2007 4:49 pm    Post subject: No *.xml files

Hi,

i installed the Mod an if i open the http://forum.bulldog-bt1100.de/rss.php
i can´t see the the xml file.

in the .htacsses i insert the rewrite part put
my webmaster have disalbe this file-type.

regards Jörg
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

No *.xml filesPosted: Fri May 11, 2007 4:43 pm    Post subject: Re: No *.xml files

And welcome Very Happy

Well, the url you mention is a xml file :
Code:
<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:annotate="http://purl.org/rss/1.0/modules/annotate/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!--
   This feed generated for    More info at http://naklon.info/rss/about.htm
-->


And you are not using Gym sitemaps and RSS it seems.
Could be worth a try, since the module comes with mod rewrite abilities, but you need the Apache mod_rewrite module on the server.

Do you know if mod_rewrite is available on your server?

What did you put in your .htaccess file ?

The result (here xsl styling is turned on in acp) with mod rewrite for both phpBB and the module is : http://www.phpbb-seo.com/boards/rss.xml
http://www.phpbb-seo.com/boards/rss-m.xml ...

++

_________________
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
Joerg



Joined: 10 May 2007
Posts: 24

No *.xml filesPosted: Sat May 12, 2007 12:11 pm    Post subject: Re: No *.xml files

Hi,

i insert the right rss.php in my phpbb folder.

I found in http://forum.bulldog-bt1100.de/admin/phpinfo.php the Mod_rewrite aon my server.

In my .htacces i write this:
Code:
#ErrorDocument 401 /errorpage.php
#ErrorDocument 403 /errorpage.php
#ErrorDocument 404 /errorpage.php
#ErrorDocument 500 /errorpage.php

# SITEMAP SITE TXT
RewriteRule ^([a-zA-Z0-9_-]+)-gx-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /sitemap.php?xml=$1&$2&$3 [L]


# SitemapIndex
RewriteRule ^sitemaps\.([xml|xml\.gz]+)$ /sitemap.php [L]
# Yahoo! urllist.txt
RewriteRule ^urllist\.([txt|txt\.gz]+)$ /urllist.php [L]


#########################################################
# GYM SITEMAPS AND RSS REWRITE RULES         #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2006/02/22
########################
# RSS main
RewriteRule ^rss-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?$1&$2 [L]
# RSS forums
RewriteRule ^forums-rss-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?forum&c&$1&$2 [L]
# RSS all
RewriteRule ^([a-zA-Z0-9_-]+)-rss([0-9]*)-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?$1=$2&$3&$4 [L]
# RSS forum topics
RewriteRule ^.+-rf([0-9]+)-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?forum=$1&$2&$3 [L]
# SitemapIndex
RewriteRule ^sitemaps\.(xml(\.gz)?)$ /sitemap.php [L]
# Sitemap modules
RewriteRule ^([a-zA-Z0-9_-]+)-sitemap\.(xml(\.gz)?)$ /sitemap.php?$1 [L]
# Forum Sitemaps
RewriteRule ^.+-gf([0-9]+)\.(xml(\.gz)?)$ /sitemap.php?forum=$1 [L]
# Yahoo! urllist.txt
RewriteRule ^urllist\.(txt(\.gz)?)$ /urllist.php [L]
#########################################################
# END GYM SITEMAPS AND RSS REWRITE RULES      #
#########################################################


you write i can turned on the xsl Style in the acp.mean you this part????
Code:
URL Rewriting
This activates URL rewriting for all the lists. The Google sitemaps URLs will look like "forum-ggsxx.xml", the RSS feeds will look like "forum-RSSxx.xml".
ATTENTION : You MUST use an Apache server with the mod_rewrite module on or an IIS server running the isapi_rewrite module AND to properly set up the module's rewrite rules in your .htaccess (or httpd.ini with IIS ).
NOTE : The module will auto detect the phpBB SEO mod rewrite type ( www.phpbb-seo.com ) if installed.

But to set this option in my sql-database i missed same data, because i cant set it over the acp.

must i installed the advanced rewrite mod from you???

Greeding Jörg
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

No *.xml filesPosted: Sun May 13, 2007 2:50 pm    Post subject: Re: No *.xml files

for the .htaccess, you need to start the mod_rewrite module, so it goes like this :

Code:
#ErrorDocument 401 /errorpage.php
#ErrorDocument 403 /errorpage.php
#ErrorDocument 404 /errorpage.php
#ErrorDocument 500 /errorpage.php

RewriteEngine on
RewriteBase /


#########################################################
# GYM SITEMAPS AND RSS REWRITE RULES         #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2006/02/22
########################
# RSS main
RewriteRule ^rss-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?$1&$2 [L]
# RSS forums
RewriteRule ^forums-rss-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?forum&c&$1&$2 [L]
# RSS all
RewriteRule ^([a-zA-Z0-9_-]+)-rss([0-9]*)-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?$1=$2&$3&$4 [L]
# RSS forum topics
RewriteRule ^.+-rf([0-9]+)-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?forum=$1&$2&$3 [L]
# SitemapIndex
RewriteRule ^sitemaps\.(xml(\.gz)?)$ /sitemap.php [L]
# Sitemap modules
RewriteRule ^([a-zA-Z0-9_-]+)-sitemap\.(xml(\.gz)?)$ /sitemap.php?$1 [L]
# Forum Sitemaps
RewriteRule ^.+-gf([0-9]+)\.(xml(\.gz)?)$ /sitemap.php?forum=$1 [L]
# Yahoo! urllist.txt
RewriteRule ^urllist\.(txt(\.gz)?)$ /urllist.php [L]
#########################################################
# END GYM SITEMAPS AND RSS REWRITE RULES      #
#########################################################
# SITEMAP SITE TXT
RewriteRule ^([a-zA-Z0-9_-]+)-gx-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /sitemap.php?xml=$1&$2&$3 [L]


Just got rid of few duplicated lines and put the SITEMAP SITE TXT RewriteRule at the end of it.

If you decide to install a mod rewrite solution for your forum as well, you'd need to add the forum rewriterules right after :
Code:
RewriteEngine on
RewriteBase /

And note that these two lines should not be in the .htaccess more than once. They are used to start the mod_rewrite module in the .htaccess, and are thus required once.

Then, it seems you are not able to access the module's ACP, and that you do not find the modules db tables as well, so it looks like you did not run the sql_install script. Check the install file, there is few steps to follow, but they are all required.

++

_________________
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
Joerg



Joined: 10 May 2007
Posts: 24

No *.xml filesPosted: Mon May 14, 2007 10:15 pm    Post subject: Re: No *.xml files

hi,

thanks no it work a little more
I installed the simple rewrite mod because i found the part in the index.php not from the advanced rewrite mod.

My server are not work well because the mod will send to many sql-queries,how i can optimies this.

Regards Jörg
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

No *.xml filesPosted: Tue May 15, 2007 9:11 am    Post subject: Re: No *.xml files

Well, mod_rewrite is another matter, maybe you could post about it if you want to use another one that the simple one.

Then, it looks like you did manage to set up things in ACP, meaning you've installed the module properly.

So, that's where you can play with performances settings.

Start with activating statistics, so that you'll be able to see how many queries went performed for each RSS feed or sitemap, in the source code.

It already looks like you increased the default amount of links outputted for rss.xml, did you see that the module had advanced performance options, like SQL cycling and so on ?

For example :
http://www.phpbb-seo.com/boards/rss.xml
http://www.phpbb-seo.com/boards/rss-l.xml
http://www.phpbb-seo.com/boards/rss-l-m.xml

Take a look at the source code :
Code:

<!-- URL list generated in  0.07685 s  - 12 sql - 286 URLs listed -->
<!--  Output started from cache after 0.09156 s -  sql -->
<!--  Output from cache ended up after 0.09249 s -  sql -->


These are the rss-l.xml generation stats when cache is being build, after cache is built, it gives :
Code:
<!-- URL list generated in  0.07685 s  - 12 sql - 286 URLs listed -->
<!--  Output started from cache after 0.00208 s -  sql -->
<!--  Output from cache ended up after 0.00321 s -  sql -->


The first line is just a reminder, it really took 3 thousand of a second to send all the page.

So the goal here is to list a decent amount of items with not too many SQL.

And it depends if you output posts content as well, with messages rss-l-m.xml gives :
Code:
<!-- URL list generated in  0.31614 s  - 20 sql - 202 URLs listed -->
<!--  Output started from cache after 0.32133 s -  sql -->
<!--  Output from cache ended up after 0.32282 s -  sql -->


To build up cache, and :
Code:
<!-- URL list generated in  0.31614 s  - 20 sql - 202 URLs listed -->
<!--  Output started from cache after 0.00211 s -  sql -->
<!--  Output from cache ended up after 0.00383 s -  sql -->


after cache is build.

The module on phpBB SEO uses default settings, as you can see, it's querying for less items at a time when outputting post messages as well.

As well this means you do not really need to output 180 items for the default feed, since you can run a long one (rss-l.xml), and RSS feeds do not need to be huge anyway.

And the same goes with Google sitemaps, the goal is to play with limits in ACP to output the most URL with not too many queries, as well as not too big (number of item at a time), to be able to build and cache the feeds and sitemaps in a decent time.

Once everything is tuned properly (remember default settings are not bad at all), you can see the mod isn't heavy at all, it's all the contrary. 0.31614s to build an 202 message list with filtered and sumarized content isn't bad at all, and to output it from cache in 3 thousand of a second is close to unbeatable.

Beside, you can as well activate the mod since option, still in acp, so that browser won't ask for content again until it gets updated, even faster than the 3 thousands of seconds Wink

So take your time to test the options in ACP a bit, you'll find good settings for your server, this is for sure.

And do not forget the final touch 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
Joerg



Joined: 10 May 2007
Posts: 24

No *.xml filesPosted: Tue May 15, 2007 3:31 pm    Post subject: Re: No *.xml files

Hi,

thanks for your reply, but i have also problems:

1.) the part in the source code i dont found for the generated time.
In the acp i enable the part "Statistics"

2.) I tested my sitemap and i found that als link like this:
http://forum.bulldog-bt1100.de/motor-gf2.xml.gz from this site http://forum.bulldog-bt1100.de/sitemaps.xml.gz are not working.

i checked the options in the acp but dont found some thing

Greeding Jörg
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

No *.xml filesPosted: Wed May 16, 2007 8:24 am    Post subject: Re: No *.xml files

Well, on your sitemapindex, I get :

Code:
<!-- URL list generated in  0.01978 s ( Mem Usage : 23.51 Kb ) - 17 sql - 95 URLs listed -->


In the source code.
If cache is activated, and gunzip off, you'll get more stats.

Now about the sitemaps links themselves, did you implement the gym sitemaps rewriterules in your .htaccess and how ?

Could you post it here ?

For your rss feeds, rss.xml gives :
Code:
<!-- URL list generated in  0.06598 s ( Mem Usage : 199.26 Kb ) - 21 sql - 189 URLs listed -->

Isn't it fast ?

++

_________________
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
Joerg



Joined: 10 May 2007
Posts: 24

No *.xml filesPosted: Thu May 17, 2007 11:39 am    Post subject: Re: No *.xml files

Hi ,

ok ok i had never say what about the speed Wink

here my .htaccess:
Code:

RewriteEngine on
RewriteBase /

#########################################################
# PHPBB SEO REWRITE RULES            #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 01/2006
#####################################################
# FORUMS PAGES
########################
# FORUM INDEX (un-comment if used)
RewriteRule ^index.html$ /index.php [QSA,L,NC]
# FORUM PROTECTION RULE
# RewriteRule ^[a-z0-9_-]+/([^/]+\.html)$ /index.php [R=301,L,NC]
# CATEGORIES
RewriteRule ^cat([0-9]+)\.html$ /index.php?c=$1 [QSA,L]
# PAGINATED FORUM
RewriteRule ^forum([0-9]+)-([0-9]+)\.html$ /viewforum.php?f=$1&start=$2 [QSA,L,NC]
# FORUM
RewriteRule ^forum([0-9]+)\.html$ /viewforum.php?f=$1 [QSA,L,NC]
# PAGINATED TOPIC
RewriteRule ^topic([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L,NC]
# TOPIC
RewriteRule ^topic([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L,NC]
# POST
RewriteRule ^post([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L,NC]
#PROFILES
RewriteRule ^member([0-9]+)\.html$ /profile.php?mode=viewprofile&u=$1 [QSA,L,NC]
# END PHPBB PAGES
#####################################################

#########################################################
# GYM SITEMAPS AND RSS REWRITE RULES         #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2006/02/22
########################
# RSS main
RewriteRule ^rss-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?$1&$2 [L]
# RSS forums
RewriteRule ^forums-rss-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?forum&c&$1&$2 [L]
# RSS all
RewriteRule ^([a-zA-Z0-9_-]+)-rss([0-9]*)-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?$1=$2&$3&$4 [L]
# RSS forum topics
RewriteRule ^.+-rf([0-9]+)-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?forum=$1&$2&$3 [L]
# SitemapIndex
RewriteRule ^sitemaps\.(xml(\.gz)?)$ /sitemap.php [L]
# Sitemap modules
RewriteRule ^([a-zA-Z0-9_-]+)-sitemap\.(xml(\.gz)?)$ /sitemap.php?$1 [L]
# Forum Sitemaps
RewriteRule ^.+-gf([0-9]+)\.(xml(\.gz)?)$ /sitemap.php?forum=$1 [L]
RewriteRule ^.+-f([0-9]+)\.(xml(\.gz)?)$ /sitemap.php?forum=$1 [L]
# Yahoo! urllist.txt
RewriteRule ^urllist\.(txt(\.gz)?)$ /urllist.php [L]
#########################################################
# END GYM SITEMAPS AND RSS REWRITE RULES      #
#########################################################
# SITEMAP SITE TXT
RewriteRule ^([a-zA-Z0-9_-]+)-gx-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /sitemap.php?xml=$1&$2&$3 [L]


Regards jörg
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

No *.xml filesPosted: Thu May 17, 2007 11:57 am    Post subject: Re: No *.xml files

As a matter of fact, the .htaccess is working, it's just that the GYM sitemaps module isn't compatible with CH, and you get an SQL error, which is outputted with a 500 error since we don't want to use html for bots in sitemaps :
Quote:
500 Internal Server Error :

Information
Invalid Sitemap


CH again then.

++

_________________
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
Joerg



Joined: 10 May 2007
Posts: 24

No *.xml filesPosted: Thu May 17, 2007 12:01 pm    Post subject: Re: No *.xml files

Ok so i will try it with the simple forum mod.

Regards Jörg
Back to top
Joerg



Joined: 10 May 2007
Posts: 24

No *.xml filesPosted: Wed May 23, 2007 11:45 am    Post subject: Re: No *.xml files

Hi,
i de installed the ch-mod but in if i go over the sitemap.xml.gzand klick to any link i see nothing only the header and a empty meassage.

A link for Exmaple:
http://forum.bulldog-bt1100.de/zubehor-gf8.xml.gz

REgards Joerg
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

No *.xml filesPosted: Wed May 23, 2007 12:57 pm    Post subject: Re: No *.xml files

This is strange, because the one listing the forums urls http://forum.bulldog-bt1100.de/forum-sitemap.xml is working great.

Could be some left others from CH on the forum db tables.

Try to synchronize your forums in phpBB ACP => Forum admin => manage.

++

_________________
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
Joerg



Joined: 10 May 2007
Posts: 24

No *.xml filesPosted: Mon Jun 04, 2007 9:56 am    Post subject: Re: No *.xml files

Hi,

i refreshed my sitemap some times but one error dont goes.
If i will open the example link i see only a site with my header an a empty meassage field.

example Link:
http://forum.bulldog-bt1100.de/motor-gf2.xml.gz

Here my .htaccess
Code:
# You could need to un-comment the following line
# Options +FollowSymlinks
RewriteEngine On
RewriteBase /

#########################################################
# PHPBB SEO REWRITE RULES            #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 01/2006
#####################################################
# FORUMS PAGES
########################
# FORUM INDEX (un-comment if used)
RewriteRule ^index\.html$ /index.php [QSA,L,NC]
# FORUM PROTECTION RULE
RewriteRule ^[a-z0-9_-]+/([^/]+\.html)$ /index.php [R=301,L,NC]
# CATEGORIES
RewriteRule ^[a-z0-9_-]*-c([0-9]+)\.html$ /index.php?c=$1 [QSA,L,NC]
# PAGINATED FORUM
RewriteRule ^[a-z0-9_-]*-f([0-9]+)-([0-9]+)\.html$ /viewforum.php?f=$1&start=$2 [QSA,L,NC]
# FORUM
RewriteRule ^[a-z0-9_-]*-f([0-9]+)\.html$ /viewforum.php?f=$1 [QSA,L,NC]
# PAGINATED TOPIC
RewriteRule ^[a-z0-9_-]*-t([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L,NC]
# TOPIC
RewriteRule ^[a-z0-9_-]*-t([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L,NC]
# POST
RewriteRule ^post([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L,NC]
#PROFILES
RewriteRule ^member([0-9]+)\.html$ /profile.php?mode=viewprofile&u=$1 [QSA,L,NC]
# END PHPBB PAGES
#####################################################



#########################################################
# GYM SITEMAPS AND RSS REWRITE RULES         #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2006/02/22
########################
# RSS main
RewriteRule ^rss-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?$1&$2 [L]
# RSS forums
RewriteRule ^forums-rss-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?forum&c&$1&$2 [L]
# RSS all
RewriteRule ^([a-zA-Z0-9_-]+)-rss([0-9]*)-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?$1=$2&$3&$4 [L]
# RSS forum topics
RewriteRule ^.+-rf([0-9]+)-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /rss.php?forum=$1&$2&$3 [L]
# SitemapIndex
RewriteRule ^sitemaps\.(xml(\.gz)?)$ /sitemap.php [L]
# Sitemap modules
RewriteRule ^([a-zA-Z0-9_-]+)-sitemap\.(xml(\.gz)?)$ /sitemap.php?$1 [L]
# Yahoo! urllist.txt
RewriteRule ^urllist\.(txt(\.gz)?)$ /urllist.php [L]
#########################################################
# END GYM SITEMAPS AND RSS REWRITE RULES      #
#########################################################

#########################################################
# SMARTOR ALBUM REWRITE RULES FAP         #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2007/02/22
########################
# ALBUM INDEX
RewriteRule ^album.html$ /album.php [QSA,L,NC]
# ALBUM PAGINATED CAT
RewriteRule ^[a-z0-9_-]+-ac([0-9]+)-([0-9]+)\.html$ /album_cat.php?cat_id=$1&start=$2 [QSA,L,NC]
# ALBUM CAT
RewriteRule ^[a-z0-9_-]+-ac([0-9]+)\.html$ /album_cat.php?cat_id=$1 [QSA,L,NC]
# ALBUM PAGINATED PIC
RewriteRule ^[a-z0-9_-]+-sp([0-9]+)-([0-9]+)\.html$ /album_showpage.php?pic_id=$1&start=$2 [QSA,L,NC]
# ALBUM PIC with full option
RewriteRule ^[a-z0-9_-]+-sp([0-9]+)-?(full)?\.html$ /album_showpage.php?pic_id=$1&$2 [QSA,L,NC]
# PERSONAL USER GALLERY PAGINATED
RewriteRule ^[a-z0-9_-]+-ap([0-9]+)-([0-9]+)-?(list|all)?\.html$ /album.php?user_id=$1&start=$2&mode=$3 [QSA,L,NC]
# PERSONAL USER GALLERY
RewriteRule ^[a-z0-9_-]+-ap([0-9]+)-?(list|all)?\.html$ /album.php?user_id=$1&mode=$2 [QSA,L,NC]
# PERSONAL USER CAT PAGINATED
RewriteRule ^[a-z0-9_-]+-cp([0-9]+)-([0-9]+)-([0-9]+)\.html$ /album_cat.php?user_id=$1&cat_id=$2&start=$3 [QSA,L,NC]
# PERSONAL USER CAT
RewriteRule ^[a-z0-9_-]+-cp([0-9]+)-([0-9]+)\.html$ /album_cat.php?user_id=$1&cat_id=$2 [QSA,L,NC]
# PERSONAL CAT PAGINATED
RewriteRule ^member-galleries-([0-9]+)\.html$ /album_personal_index.php?start=$1 [QSA,L,NC]
# PERSONAL CAT
RewriteRule ^member-galleries\.html$ /album_personal_index.php [QSA,L,NC]
# ALL PICS PAGINATED
RewriteRule ^all-pics-([0-9]+)\.html$ /album_allpics.php?start=$1 [QSA,L,NC]
# ALL PICS
RewriteRule ^all-pics\.html$ /album_allpics.php [QSA,L,NC]
# THUMBNAILS
RewriteRule ^[a-z0-9_-]+-thumb([0-9]+)\.jpg$ /album_thumbnail.php?pic_id=$1 [QSA,L,NC]
# MED
RewriteRule ^[a-z0-9_-]+-mid([0-9]+)\.jpg$ /album_picm.php?pic_id=$1 [QSA,L,NC]
# FULL
RewriteRule ^[a-z0-9_-]+-pic([0-9]+)\.jpg$ /album_pic.php?pic_id=$1 [QSA,L,NC]
#########################################################

# SITEMAP SITE TXT
#RewriteRule ^([a-zA-Z0-9_-]+)-gx-?(l|s)?-?(m)?\.(xml(\.gz)?)$ /sitemap.php?xml=$1&$2&$3 [L]

# SITEMAP SITE TXT
RewriteRule ^([a-zA-Z0-9_-]+)-gx\.(xml(\.gz)?)$ /sitemap.php?xml=$1 [L]
RewriteRule ^([a-zA-Z0-9_-]+)-gt\.(xml(\.gz)?)$ /sitemap.php?txt=$1 [L]


I found no line with any -gf , maybe this are the problem.

Greedings Jörg
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

No *.xml filesPosted: Mon Jun 04, 2007 5:39 pm    Post subject: Re: No *.xml files

As a matter of fact, your .htaccess misses the "-gf" redirection :

Code:
# Forum Sitemaps
RewriteRule ^.+-gf([0-9]+)\.(xml(\.gz)?)$ /sitemap.php?forum=$1 [L]


Add it after

Code:
# Sitemap modules
RewriteRule ^phpbb/([a-zA-Z0-9_-]+)-sitemap\.(xml(\.gz)?)$ /phpbb/sitemap.php?$1 [L]


Should be enough.

++

_________________
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
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB SEO TooLKit  » GYM Sitemaps
Page 1 of 2 Goto page 1, 2  Next

Navigation Similar Topics

Jump to: