0
我的網站www.sellGuru.in有很多谷歌網站管理員報告的404錯誤,但這些網址可以從瀏覽器訪問。我不明白爲什麼這些錯誤已經由網站管理員報告。搜索引擎友好的網址使用htaccess
我的網站htaccess文件將所有內容重定向到index.php?page = pagename,但Google網站管理員無法找到像sellguru.in/contact這樣的網頁重定向到=> sellguru.in/index.php?page=contact using htaccess文件。
下面是htaccess文件我使用
ErrorDocument 404 /index.php
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
請幫我解決這個問題。