Google 网站站长工具和 XML 生成器声称页面无法访问

Google Webmaster Tools & XML Generators claim page to be unreachable

我最近对我的网站进行了一些更改,想使用 google 网站管理员工具检查所有内容,并使用我可以在网上找到的任何站点地图生成器更新站点地图。

但是站点地图生成器无法连接到我的网站并且google声称该页面无法访问我试图删除我最近添加的 .htaccess 文件,但没有帮助

这是我的 .htaccess 文件,对我来说效果很好。我可以从清除缓存等的所有浏览器访问我的页面...

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^webdesign/(.*)$ /index.php?cl=

编辑:使用 Bing 我收到的网站站长工具:

HTTP/1.1 500 Internal Server Error
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Connection: close
Date: Tue, 26 Jan 2016 07:16:56 GMT
Pragma: no-cache
Transfer-Encoding: chunked
Content-Type: text/html; charset=utf-8
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Server: Apache/2.2.31 (Unix)
Set-Cookie: sec_session_id=bq05b1i45qerls9crr9pv1cgm7; path=/; HttpOnly
Set-Cookie: lang=de; expires=Wed, 27-Jan-2016 07:16:56 GMT; Max-Age=86400
X-Powered-By: PHP/5.6.17

经过一些研究,我解决了这个问题 - 实际上 Bing 网站管理员工具返回了所需的提示。

该页面实际上总是返回错误 500 但仍返回内容。浏览器似乎忽略了这一点 - 但爬虫和工具不会。

因此问题出在我的代码中,导致了 500 结果。有了这些信息,我就能够找到它并让它重新工作。