PDA

View Full Version : .htaccess 301 whole folder


PaulGrimshaw
10-Jul-2007, 05:57 PM
Hi,

Can anyone tell me how I use htaccess to do a 301 move from

www.madmash.com/forum/*
to
www.madmash.com/forums/*

thanks,
paul.

Darren B
10-Jul-2007, 06:51 PM
Paul can you not use the standard redirect

RewriteEngine On
rewritecond %{http_host} ^yoursite.com
rewriteRule ^(.*) http://www.yoursite.com/$1 [R=301,L]

Darren

PaulGrimshaw
10-Jul-2007, 08:03 PM
Hi Darren,

I took your suggestion and searched. I got this and it seems to work aok.

RedirectMatch 301 ^/oldfolder/$ http://www.mysite.com/newfolder/

Thanis,
Paul.

Darren B
10-Jul-2007, 08:08 PM
Clad it works;)