|
Written by Jason Kendall
|
|
Monday, 14 April 2008 20:30 |
As mentioned before, I use Pound as a front end proxy to my sites. Due to some issues on my previous post I upgraded to 2.4.1 - seems there is an issue in 301 redirects. In order to fix do the following:
edit http.c line 1159 and line 1173:
snprintf(buf, MAXBUF, "Location: %s://%s%s",
Should Read:
snprintf(buf, MAXBUF, "Location: %s://%s/%s", Give that a test and you should find it fixed.
|