Code: Select all
RewriteRule foo.html /bar/ [R=301,L]Code: Select all
index.php?/foo/bar.htmlCode: Select all
RewriteRule index.php?/foo/bar.html /foo/bar/ [R=301,L]YL
Code: Select all
RewriteRule foo.html /bar/ [R=301,L]Code: Select all
index.php?/foo/bar.htmlCode: Select all
RewriteRule index.php?/foo/bar.html /foo/bar/ [R=301,L]Sehr genial, danke. Falls das mal jemand braucht:garvinhicking wrote:Du musst dafür RewriteCond und QUERY_STRING (oder so) abprüfen.
Code: Select all
RewriteCond %{QUERY_STRING} ^/altes/ziel.html$
RewriteRule ^index.php$ /neue/url/? [R=301,L]