Before making changes, consider upgrading. This modification was corrected in phpBB v3.3.0.
After the recent upgrade to phpBB 3.2 my feeds generate an error. After some trial and error, I found adding /app.php/feed after the url allows feed access. The rewrite commands in phpBB htaccess are supposed to remove app.php from the URL but there appears to be a disconnect somewhere in the routing. The URL displays correctly in the browser but you get a to many redirects message. Firefox displays: "Firefox has detected that the server is redirecting the request for this address in a way that will never complete."
Chrome displays: "The page isn't working skdavis.net redirected you too many times".
After going through all this trouble I found some posts on phpBB: Board feed stopped working after going from 3.1.10 to 3.2.1 (too many redirects) and .htaccess not working migrate punBB to phpBB
To get your feed icon(s) to work when selected, login to ACP and go to to Server Settings>Enable URLRewriting and select No. Feed icons will work properly but the URL access your phpBB board wide feed will be:
Code: Select all
http://yourdomainname/app.php/feed
(You must replace your_domain_name in the code below with your domain name)
Code: Select all
<!-- IF S_ENABLE_FEEDS and S_ENABLE_FEEDS_OVERALL -->
<li class="rightside" <span><a type="application/rss+xml" class="feed-icon-forum" title="{L_FEED} - {SITENAME}" href="https://your_domain_name/app.php/feed"><i class="icon fa-rss-square fa-fw icon-orange" aria-hidden="true"></i><span class="sr-only">{L_FEED}</span></a></li>
<!-- ENDIF -->