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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -