所有发布请求在Wordpress中都有302找到错误

时间:2017-06-12 05:25:31

标签: php wordpress .htaccess

我有一个Wordpress网站需要维护。我使用Apache作为服务器。我不知道为什么所有帖子请求都有302 Found响应,这会导致url重定向。这使我的网站无法发布任何内容,进行任何更新。

例如:

  1. 我访问login.php
  2. 发布用户名和密码
  3. 我收到302 Found错误,位置:index.php
  4. 我的浏览器然后GET index.php
  5. 你能告诉我应该注意什么吗?我试过了:

    1. .htaccess RewriteEngine Off
    2. 但问题仍然存在。所有GET请求都没有问题。但只有POST请求有问题。

      我的htaccess:

      Options +FollowSymLinks
      RewriteEngine On
      <IfModule mod_speling.c>
      CheckSpelling on
      </IfModule>
      RewriteRule ^search/?$  search.php [NC,L]
      RewriteRule ^about-us/?$  about-us.php [NC,L]
      RewriteRule ^country/?$  country.php [NC,L]
      RewriteRule ^city/?$  city.php [NC,L]
      RewriteRule ^city/letter/(.*)/$  city.php?city=$1 [NC,L]
      

      似乎Wordpress容易出现这些302重定向问题。

      更多信息: 大多数处理POST的php文件也处理GET。例如,login.php本身就是一个登录表单,并且还编码处理登录处理。

      非常感谢您的回复。

0 个答案:

没有答案