Hi,Guys
I encountered a puzzling Feed error:
I try to set old.com 301 jump to new.com.
Then I found “old.com/?feed=rss2” not jump to the “new.com/feed/” this address. Access “old.com/?feed=rss2” it jumps to new.com Home here.
This is where the problem? How do I solve it? Thanks!
I am using Nginx+Varnish:
server {
listen 127.0.0.1:8080;
server_name old.com http://www.old.com;
return 301 http://www.new.com$request_uri;
}
server {
listen 127.0.0.1:8080;
server_name new.com http://www.new.com;
limit_conn one 20;
limit_rate 200k;
root /var/www/site;
index index.php index.html;
port_in_redirect off;
server_tokens off;
# Only allow these request methods
# Do not accept DELETE, SEARCH and other methods
if ($request_method !~ ^(GET|HEAD|POST)$ ) {
return 444;
}
# Deny certain Referers
if ( $http_referer ~* (babes|forsale|girl|jewelry|love|nudit|organic|poker|porn|sex|teen|nike|fat|golf|briefcase|education|webcam|zippo|hostgator|slaklyfreelay|outlook|seo) )
{
return 404;
return 403;
}
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
In order to retain the query parameters when using a 301 redirect, you could use:
Without the
$query_string
the query parameters (e.g.?feed=rss2
) will be dropped.