lmartins
10/20/2014 - 8:15 AM

Ignore local development domains in htaccess redirect

Ignore local development domains in htaccess redirect

<IfModule mod_rewrite.c>
  RewriteEngine On

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

</IfModule>