301 redirect phpbb forum and all subpages -
hello redirect website/forum/ , subpages (e.g.: /forum/viewtopic.php?f=2&t=453) index page.
i have tried few different methods not work.
i tried redirectmatch 301 ^/forum/.*$ http://myhomepage.com leaves part of forum page in url.
i tried: rewriteengine on rewritebase / rewriterule ^/forum/.*$ http://myhomepage.com [l,r=301]
but did nothing.
any appreciated.
for apache's httpd.conf
,
try using rewriterule ^/forum/(.*)$ http://myhomepage.com/ [r,nc]
the (.*)
should catch comes after /forum/
. r
means redirect, , nc
means case insensitive.
Comments
Post a Comment