Trying to get

www.example.com

to go directly to

www.example.com/store

I have tried multiple bits of code and none work.

What I’ve tried:

Options +FollowSymlinks
RewriteEngine on

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

RewriteCond %{HTTP_HOST} ^(.+)\www.example\.com$
RewriteRule ^/(.*)$ /samle/%1/$1 [L]

What am I doing wrong?

19 Answers
19

Leave a Reply

Your email address will not be published. Required fields are marked *