Announcement

Collapse
No announcement yet.

.htaccess 301 whole folder

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    .htaccess 301 whole folder

    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.

    #2
    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

    Comment


      #3
      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.

      Comment


        #4
        Clad it works

        Comment

        Working...
        X