
03-18-2010, 06:55 PM
|
 |
SEO Junior and a half
|
|
Join Date: Oct 2006
Location: Toronto
Posts: 80
|
|
|
redirect a folder and contents
I have a site that I need to move a folder,
domain.com/folder/page.php
to new
domain.com/page.php
this is what I used but redirect the entire folder and not the contents in it.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^folder/(.*) http://www.domain.com/ [R=301,L]
</IfModule>
|