Forum Moderators: phranque

Message Too Old, No Replies

301 folders

         

Dave_B

2:29 pm on Oct 15, 2005 (gmt 0)

10+ Year Member



I am using the following to redirect non www traffic, what do I do to make it work for folders?

# Turn on rewrite
Options +FollowSymlinks
RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST}!^www\.example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]

currently
example.com redirects to www.example.com
I want
example.com/folder/ to redirect to www.example.com/folder/

Dave_B

2:43 pm on Oct 15, 2005 (gmt 0)

10+ Year Member



too early...nevermind