Hi all,
I am trying to enforce a 301 (moved permanently) redirect on a forum topic of mine to a static HTML page.
Old URL: forums/index.php?topic=4.0
New page: /static-page.html
I don't need any ID's or anything, I just want that one topic (?topic=4.0) to redirect to /static-page.html
I just cannot get it to work.
I have come up with this
RewriteCond %{QUERY_STRING} ^topic=4.0$
RewriteRule ^(.*)$ /static-page.html [R=301,L]
But when trying it out the URL becomes /static-page,html?topic=4.0
How can I remove that?