Why my rss feed not found ?
my site http://houseofdream.com.ua/q/
rss feed http://houseofdream.com.ua/q/feed/qa.rss (not found)
i use nginx + php-fpm
all else links work fine
One option for not seeing the feeds is that you haven't enabled them in admin/feeds. However, you seem to be getting an error from the web server directly rather than from Q2A. Another option could be that some plugin is messing with that somehow (you can disable one by one to see if there is any to blame).
Anyway, based on the 404 page from nginx most likely your web server is not properly configured to return RSS feeds or is somehow blocking them.
solution is (i add this):
location @runphp {
if (!-f $request_filename) {
rewrite ^/q/(.+)?$ /q/index.php?qa-rewrite=$1 last;
}
location ~* \q\.(rss)$ {
try_files $uri @runphp;
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.