sitemap.xml vraag
ik krijg de volgende melding van hun:
URL's niet gevolgd
Tijdens het testen van een aantal URL's van uw sitemap heeft google vastgesteld dat bepaalde URL's niet toegankelijk zijn omdat deze te veel omleidingen bevatten. Wijzig de omleidende URL's in uw sitemap en vervang deze door de bestemmings-URL (het doel waarnaar wordt omgeleid). Alle geldige URL's worden wel verzonden.
kan het zijn omdat me sietmap.xml niet goed is?
sitemap.xml
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="gss.xsl"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!--#Generated by SOFTplus GSiteCrawler v1.23 rev. 286 by SOFTplus Entwicklungen GmbH, http://gsitecrawler.com/, http://johannesmueller.com/gs/ -->
<url><loc>http://www.madirc.eu/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>1.00</priority></url>
<url><loc>http://www.madirc.eu/modules/home/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/download/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/forum/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/funclips/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/fungames/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/memberlijst/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/subdomeinen/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
</urlset>
<?xml-stylesheet type="text/xsl" href="gss.xsl"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!--#Generated by SOFTplus GSiteCrawler v1.23 rev. 286 by SOFTplus Entwicklungen GmbH, http://gsitecrawler.com/, http://johannesmueller.com/gs/ -->
<url><loc>http://www.madirc.eu/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>1.00</priority></url>
<url><loc>http://www.madirc.eu/modules/home/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/download/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/forum/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/funclips/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/fungames/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/memberlijst/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
<url><loc>http://www.madirc.eu/modules/subdomeinen/</loc><lastmod>2008-08-29T20:42:31+00:00</lastmod><changefreq>daily</changefreq><priority>0.50</priority></url>
</urlset>
en wat bedoelen ze met: Wijzig de omleidende urls?
hoe ontstaat een omleidende url?
en hoe verkom je dit?
greetz madhouse
edit:
kan het zijn dat me .htaccess niet goed is:
Code (php)
1
2
3
4
5
6
7
2
3
4
5
6
7
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
ErrorDocument 404 /error404.php
RewriteRule ^modules/([^/]+)/([^/]+)/([^/]+)/?$ modules.php?name=$1&ident=$2&page=$3 [L]
RewriteRule ^modules/([^/]+)/([^/]+)/?$ modules.php?name=$1&ident=$2 [L]
RewriteRule ^modules/([^/]+)/?$ modules.php?name=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
ErrorDocument 404 /error404.php
RewriteRule ^modules/([^/]+)/([^/]+)/([^/]+)/?$ modules.php?name=$1&ident=$2&page=$3 [L]
RewriteRule ^modules/([^/]+)/([^/]+)/?$ modules.php?name=$1&ident=$2 [L]
RewriteRule ^modules/([^/]+)/?$ modules.php?name=$1 [L]
Gewijzigd op 01/01/1970 01:00:00 door Robert dat ben ik
Ik heb het bekeken in xml-sitemaps.com en zie dat de linkdiepte 4 is.
Het kan ook zijn dat ik hier mis mee zit en dat het inderdaad aan je .htaccess ligt.
Je kunt hier niet zoveel mee. Wat me wel opvalt is dat je in elke url (voor zover ik zag) de term 'modules' zie staan. Probeer dit er uit te halen, houd je url's zo kort mogelijk. Wat je nu hebt voegt niks toe en is niet goed voor de zoekmachines.
maar dan moet je .htaccess ook weer verandert worden?
want dan is de map modules weg en dan zou ? moeten worden inplaats van modules
dus niet zo
RewriteRule ^modules/([^/]+)/?$ modules.php?name=$1 [L]
maar zo:
RewriteRule ^?/([^/]+)/?$ modules.php?name=$1 [L]
of zie ik dit verkeerd?
greetz madhouse
Voor die .htaccess moet je bij iemand anders zijn, heb ik (nog) niet veel kaas van gegeten.
niemand een idee verder hoe dit opgelost kan worden?