# Nginx rewrite for RSS

URL: https://brege.org/post/nginx-rewrite-for-rss/
Published: 2016-10-11
Updated: 2026-03-29
Tags: nginx, rss, rewrite-rules, feeds
Categories: software

Add the following to the main server block in your nginx config:

``` nginx
    location ~ ^/(?:feed|feeds|rss)  {
         return 301 /post/index.xml;
    }
```
Now people can go to https://brege.org/rss to find the RSS feed.
This rewrite rule could be expanded to match other common feed URI guesses.
<!--more-->