2

If I have the following domains in lighttpd:
domain1.com
domain1.co.uk
domain2.com
domain2.co.uk

How do i redirect all these to to 'domain.com'?

ie:
domain1.co.uk/some-path/ redirects to domain.com/some-path/ and
domain2.com/some-other-path/ redirects to domain.com/some-other-path/

Thanks.

sleepyjames
  • 163
  • 1
  • 3
  • 9

2 Answers2

3

Something like:

$HTTP["host"] =~ "firsthost.example.com|secondhost.example.com|otherhost.example.net" {
  url.redirect = ( "^/(.*)" => "http://realdomain.example.org/$1" )
}

should work - as covered in the man page ;)

Cry Havok
  • 1,845
  • 13
  • 10
1

Use mod_redirect as mentioned in the lighttpd docs. There are a number of examples that you can adapt.

sybreon
  • 7,405
  • 1
  • 21
  • 20