Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

htaccess redirect only if domain matches

I have a problem where I need to redirect my domain before it hits php. By the time it hits the ability to execute a header, it is too late.

How can I do

if (domain == 'www.example.com')
redirect www.domain.com;

in my .htaccess?

like image 204
Devin Dixon Avatar asked Apr 20 '12 04:04

Devin Dixon


2 Answers

Using mod_rewrite

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R,L]
like image 77
Jon Lin Avatar answered Nov 15 '22 19:11

Jon Lin


As of Apache 2.4 you can use an <If> Directive to achieve what you suggested:

<If "req('Host') == 'www.example.com'">
  RedirectMatch (.*) http://www.example2.com$1
</If>

For a case-insensitive version that matches with or without the www you can do:

<If "req('Host') =~ /example.com/i">
  RedirectMatch (.*) http://www.example2.com$1
</If>

Sources:

  • Apache Blog: New in httpd 2.4: If, ElseIf, and Else
  • Apache 2.4 Documentation: If Directive
like image 25
PeterA Avatar answered Nov 15 '22 19:11

PeterA