I need to do a 301 permanent redirectin in htaccess: 1. http://www.example.com/test.html should redirect to http://www.example.com/dir/test.html 2. http://example.com/test.html should redirect to http://www.example.com/dir/test.html how to do this? Thanks in advance...
Options +Indexes Options +FollowSymLinks RewriteEngine on RewriteBase / RewriteRule ^test\.html$ http://www.domain.com/dir/test.html [R=permanent,L]