selbe index.php, 301 redirect tag1 -> tag2
Verfasst: 14.11.2006, 15:01
sorry, mal wieder ne 301 frage -- habe aber jetzt lange genug gesucht.
ich möchte
https://domain/index.php?section=tag1
weiterleiten auf
https://domain/index.php?section=tag2
Klingt eigentlich einfach.
Folgendes geht nicht:
Das hier geht, aber nur weil das ? durch ein & ersetzt wurde:
Das ? scheint also das Problem zu sein ...
ich möchte
https://domain/index.php?section=tag1
weiterleiten auf
https://domain/index.php?section=tag2
Klingt eigentlich einfach.
Folgendes geht nicht:
Code: Alles auswählen
Redirect Permanent http://domain/index.php?section=tag1 http://domain/index.php?section=tag2
Code: Alles auswählen
RewriteEngine on
rewriteRule ^index.php?section=tag1$ http://domain/index.php?section=tag2 [R=permanent,L]
Code: Alles auswählen
Redirect Permanent /index.php§ion=tag1 http://domain/index.php?section=tag2