Redirection des topics, des posts et des pages membres
CODE
/viewtopic.php?pid=45 => /post45.html#p45
/viewtopic.php?id=2 => /topic2.html
/profile.php?id=81 => /membre81.html
/viewtopic.php?id=2 => /topic2.html
/profile.php?id=81 => /membre81.html
J'ai essayé avec RedirectMatch et une règle de réécriture, mais aucune des deux solutions ne fonctionne :
CODE
RedirectMatch 301 ^viewtopic.php?pid=([0-9]+)$ /post$1.html
RewriteEngine on
RewriteRule ^viewtopic.php?pid=([0-9]+)$ /post$1.html [R=301]
RewriteEngine on
RewriteRule ^viewtopic.php?pid=([0-9]+)$ /post$1.html [R=301]
J'ai aussi quelques URL à rediriger sans REGEX, mais ce code ne fonctionne pas :
Redirection des forums (sans REGEX à cause de l'injection des noms dans l'URL)
CODE
RedirectPermanent /viewforum.php?id=2 http://forum.finalclap.com/graphisme-et-retouche-f2.html
RedirectPermanent /viewforum.php?id=16 http://forum.finalclap.com/compositing-f16.html
RedirectPermanent /viewforum.php?id=16 http://forum.finalclap.com/compositing-f16.html
Comment faire ?
Merci