PDA

View Full Version : Redirect www to non www


0031index
11-06-2009, 08:30 PM
I'am looking for .htaccess code to 301-redirect all request from http://www.123gevonden.nl (http://www.1) to ALWAYS go to http://123gevonden.nl (http://123gl).

Hope someone can help me.:sos:

Best regards,

Aad.

panter2010
12-18-2009, 03:30 AM
RewriteCond %{HTTP_HOST} ^mydomain\.com$
RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L]

Sergey L.
12-18-2009, 04:43 AM
RewriteCond %{HTTP_HOST} ^mydomain\.com$
RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L]

quite the contrary )


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

jassmee
03-02-2012, 08:29 AM
you can do the above problem with the help of
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://www.mysitecom/ [R=301,L]