301 redirect with .htaccess www to non www

uitfrankrijk

New member
Joined
Jul 6, 2011
Messages
1
Hello, i'm trying to redirect my domain www.uitfrankrijk.com to uitfrankrijk.com.
I used this redirect:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.uitfrankrijk.com [NC]
RewriteRule ^(.*)$ http://uitfrankrijk.com/$1 [L,R=301]

the problem is i get a 500 internal server error. How is this possible?
 
You would have to check the error log to find out whats wrong
 
@uitfrankrijk

I think you should use it this way:

Code:
RewriteEngine On
 RewriteBase /
 RewriteCond %{HTTP_HOST} ^www.uitfrankrijk\.com
 RewriteRule ^(.*)$ http://uitfrankrijk.com/$1 [R=permanent,L]
 
Back
Top