You may have tried to create similar redirects:
Redirect 301 /test.xml http://example.com/test/index.xml
Redirect 301 /feed/ http://example.com/feed/feed-new/
Redirect 301 /feed http://example.com/feed/index.xml
The above is what cPanel would generate if you use the Redirect option. Here are the entries that will actually work:
RedirectMatch 301 ^/test.xml$ http://example.com/test/index.xml
RedirectMatch 301 ^/feed/$ http://example.com/feed/feed-new/
RedirectMatch 301 ^/feed$ http://example.com/feed/test/index.xml
Enjoy!