我的WordPress网站出现问题,每个页面都重定向到contact.php页面。
例如,我单击主页,获得联系页面。当我在浏览器检查器中检查“网络”部分时,我会看到以下内容:
302 get www.domaine.com (homepage but with 302 code!).
301 get www.domaine.com/index.php?page_id=5672 (I think the page_id is for contact page).
200 get www.domaine.com/contact.php .
然后将页面contact.php加载。
我在网站的每个页面上都得到了此信息,但是当我登录管理面板时一切正常,我认为当我将WordPress更新到最新版本时出现了问题,但是不确定。
编辑:htacces文件
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
感谢您的帮助。