在Wordpress中绕过RSS提要的身份验证

时间:2019-01-25 01:35:01

标签: apache authentication openid

我有一个受openid身份验证保护的Wordpress网站。我需要允许访问某些IP的RSS feed,但是不管我尝试什么,我似乎都无法这样做。我猜这与Wordpress的内部重写有关吗?

服务器正在运行Apache 2.4。

我还有其他非Wordpress目录,无论我尝试什么,都可以绕过身份验证,但是不能使用RSS提要。

主要认证指令为:

<Location />
     SSLRequireSSL
     AuthType OpenID
     OpenID config stuff here...
     Require valid-user
     Require env allow ###allows certain wordpress pages through authentication like wp-cron.php for proper functioning of the site
     Require host example.com ###allows specified host to access the whole site without authentication
</Location>

我需要绕过“ / feed /”或“ / rss /”,我以为我可以处理类似的事情,但是它不起作用(我尝试过的其他数百件事也没有) :

<Location /rss>
     Require ip 1.1.1.1
     Satisfy Any
</Location> 

Any help would be greatly appreciated. Thank you!

0 个答案:

没有答案