| Subject: | Redirect loop / too many redirects | |
|---|---|---|
| From: | TinyApps.Org (mil...@tinyapps.org) | |
| Date: | Jul 15, 2009 9:25:33 am | |
| List: | ru.sysoev.nginx | |
Refine Search
| From | Sent On | Attachments |
|---|---|---|
| TinyApps.Org | Jul 15, 2009 9:25 am | |
| Gena Makhomed | Jul 15, 2009 10:02 am | |
| TinyApps.Org | Jul 15, 2009 10:26 am | |
| Gena Makhomed | Jul 15, 2009 11:06 am | |
| Marcus Clyne | Jul 15, 2009 12:13 pm | |
| Maxim Dounin | Jul 15, 2009 12:37 pm | |
| Marcus Clyne | Jul 15, 2009 3:27 pm | |
| Marcus Clyne | Jul 15, 2009 4:25 pm | |
| Maxim Dounin | Jul 15, 2009 6:20 pm | |
| TinyApps.Org | Jul 16, 2009 12:45 am | |
| Marcus Clyne | Jul 16, 2009 5:52 am | |
| AMP Admin | Aug 14, 2009 9:59 pm | |
| Cliff Wells | Aug 15, 2009 10:38 am |
| Subject: | Redirect loop / too many redirects | |
|---|---|---|
| From: | TinyApps.Org (mil...@tinyapps.org) | |
| Date: | Jul 15, 2009 9:25:33 am | |
| List: | ru.sysoev.nginx | |
I am trying to redirect all requests for
/weblog/index.rss
to
/weblog/index.rss20
with this rule:
location /weblog/index.rss { rewrite /weblog/index.rss /weblog/ index.rss20 permanent; }
but I end up with an error message in the browser like:
Safari: Too many redirects occurred trying to open
“feed://example.org/weblog/index.rss
”. This might occur if you open a page that is redirected to open
another page which then is redirected to open the original page.
Firefox: Redirect Loop - Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
All other redirect rules work - any idea why this one would fail?

