如果网址与“供稿”匹配,我试图强制返回404:http://example.com/wordpress/?feed=rss2
我向.htacess添加了RedirectMatch ^(.*)feed(.*)$[R = 404],但它不返回任何404错误.
对于functions.php中的Wordpress,我可以使用下一个代码:
function fb_disable_feed() {
include( get_query_template( '404' ) );
header('HTTP/1.0 404 Not Found');
exit;
}
add_action('do_feed', 'fb_disable_feed', 1);
add_action('do_feed_rdf', 'fb_disable_feed', 1);
add_action('do_feed_rss', 'fb_disable_feed', 1);
add_action('do_feed_rss2', 'fb_disable_feed', 1);
add_action('do_feed_atom', 'fb_disable_feed', 1);
但是它会将http://example.com/wordpress/?feed=rss2(301)重定向到http://example.com/wordpress/feed,然后返回404错误.
我需要http://example.com/wordpress/?feed=rss2返回404错误&不重定向到http://example.com/wordpress/feed
解决方法:
可以使用mod_rewrite规则来代替WP PHP代码.
将此规则放在您的主要WP .htaccess文件中作为第一条规则:
RewriteEngine On
RewriteCond %{THE_REQUEST} feed [NC]
RewriteRule ^ - [L,R=404]