Changing local PlaneFinder Site Address

Found a way to get around the issue by using redirects with lighttpd:

Code:
cat $:/etc/lighttpd/conf-enabled/70-planefinder-redirect.conf
$HTTP["url"] =~ "^/planefinder" {
  $HTTP["host"] =~ ".*" {
    url.redirect = ( "^/(.*)" => "http://%0:30053" )
    url.redirect-code = 301
  }
}
 
Back
Top