I need to redirect all example.com to www.example.com except开发者_JAVA技巧 for example.com/subdirectory which should remain as is without any redirection.
I have solved the problem by having the following in the .htaccess file
RewriteEngine On
RewriteCond $1 !^subdirectory RewriteCond %{HTTP_HOST} !^www.example.com$ [NC] RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
精彩评论