微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

WordPress后端的更改导致PHP文件的下载(某些POST请求被阻止)

当我尝试在wordpress中创建用户时,将启动文件“user-new.PHP”的下载.但是没有创建用户.如果我想更改设置,同样的问题.然后开始下载“options.PHP

这是下载的options.PHP内容

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>503 Service Unavailable</title>
</head><body>
<h1>Service Unavailable</h1>
<p>The server is temporarily unable to service your
request due to maintenance downtime or capacity
problems. Please try again later.</p>
</body></html>

来自提供程序的错误日志:

30.10.2018 16:45:01 example.org [client 2a01:c23:9000::] rdbm_handle_postscan_block: hostname=example.org, client_ip='2a01:c23:9027:b800:34b5:9469:33f9:1ef4', would captcha uri: '/wp-admin/options.PHP'
30.10.2018 16:53:58 example.org [client 2a01:c23:9000::] rdbm_handle_postscan_block: hostname=example.org, client_ip='2a01:c23:9027:b800:34b5:9469:33f9:1ef4', would captcha uri: '/wp-admin/options.PHP'
30.10.2018 17:01:23 example.org [client 2a01:c23:9000::] rdbm_handle_postscan_block: hostname=example.org, client_ip='2a01:c23:9027:b800:34b5:9469:33f9:1ef4', would captcha uri: '/wp-admin/options.PHP'
30.10.2018 17:01:52 example.org [client 2a01:c23:9000::] rdbm_handle_postscan_block: hostname=example.org, client_ip='2a01:c23:9027:b800:34b5:9469:33f9:1ef4', would captcha uri: '/wp-admin/user-new.PHP'
30.10.2018 17:06:34 example.org [client 2a01:c23:9000::] rdbm_handle_postscan_block: hostname=example.org, client_ip='2a01:c23:9027:b800:34b5:9469:33f9:1ef4', would captcha uri: '/wp-admin/options.PHP'

该问题仅影响管理员选项.帖子和页面仍然可以创建,编辑等,更新主题插件也可以正常工作.

我被卡住了.我用谷歌搜索了很长时间,但不幸的是我找不到线程或其他有同样问题的人.
这里的任何人都可以帮助我吗?我希望我已经表达得足够清楚了.

编辑:
的.htaccess

# BEGIN wordpress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.PHP$- [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.PHP [L]
</IfModule>
# END wordpress

解决方法:

我想到了:

在发现所有网站都有相同的主机后,我深入研究了提供商的设置.就我而言,有一个活动的垃圾邮件过滤器阻止了各种POST请求.只需关闭过滤器即可删除错误.

提供者:STRATO AG

STRATO ServerSide Security Settings

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐