Auf domain.de lief mal ein phpBB.
Davon sind Seiten wie /ftopic545.html, /viewforum.php?f=29, /viewtopic.php?p=29480 und /archive/o_f__f_42__flohmarkt.html im Index.
Insgesammt etwa 14.500 Seiten.
Heute läuft ein Webkatalog (php LD v2) auf der Domain und wenn ich jetzt domain.de/archive/o_f__f_42__flohmarkt.html (oder eine andere Seite) aufrufe, wird immer die Startseite des Webkatalogs angezeigt.
Das müsste natürlich DC ergeben.
Daher habe ich per Robots.txt sachen wie viewforum.php oder /archive/ gesperrt.
Aber wie mache ich das mit den ftopic sachen?
Wenn da jetzt steht:
Code: Alles auswählen
Disallow: /ftopic
Achja, die .htaccess sieht momentan so aus:
Code: Alles auswählen
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [QSA,L]
Code: Alles auswählen
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} /forums.html
RewriteRule (.*) /index.php [L]
RewriteCond %{REQUEST_FILENAME} /viewforum([0-9]*)-([0-9]*)-([0-9]*).html
RewriteRule (.*) /viewforum.php?f=%1&topicdays=%2&start=%3 [L]
RewriteCond %{REQUEST_FILENAME} /forum([0-9]*).html
RewriteRule (.*) /viewforum.php?f=%1 [L]
RewriteCond %{REQUEST_FILENAME} /ptopic([0-9]*).html
RewriteRule (.*) /viewtopic.php?t=%1&view=previous [L]
RewriteCond %{REQUEST_FILENAME} /ntopic([0-9]*).html
RewriteRule (.*) /viewtopic.php?t=%1&view=next [L]
RewriteCond %{REQUEST_FILENAME} /ftopic([0-9]*)-([0-9]*)-([a-zA-Z]*)-([0-9]*).html
RewriteRule (.*) /viewtopic.php?t=%1&postdays=%2&postorder=%3&start=%4 [L]
RewriteCond %{REQUEST_FILENAME} /ftopic([0-9]*)-([0-9]*).html
RewriteRule (.*) /viewtopic.php?t=%1&start=%2 [L]
RewriteCond %{REQUEST_FILENAME} /ftopic([0-9]*).html
RewriteRule (.*) /viewtopic.php?t=%1 [L]
RewriteCond %{REQUEST_FILENAME} /ftopic([0-9]*).html
RewriteRule (.*) /viewtopic.php?t=%1&start=%2&postdays=%3&postorder=%4&highlight=%5 [L]
Gruß
nX