我的网站www.sellGuru.in有很多 Google 网站管理员报告的 404 错误,但这些网址可以从浏览器访问。我无法弄清楚为什么网站管理员会报告这些错误。
我的网站 htaccess 文件将所有内容重定向到 index.php?page=pagename 但谷歌网站管理员无法使用 htaccess 文件找到像 sellguru.in/contact 重定向到 => sellguru.in/index.php?page=contact 这样的页面。
下面是我正在使用的 HTaccess 文件
ErrorDocument 404 /index.php
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
请帮我解决这个问题。