我被迫从出厂重建我的机器。 一切都应该是相同的,IIS版本(7.5),操作系统(Windows 7),和我的网站文件。 然而,有些东西是不同的,因为配置我的网站,并在拉我的浏览器本地站点后,我得到以下错误...
HTTP错误500.19 -内部服务器错误请求的页面无法访问,因为该页的相关配置数据无效。 错误代码0x8007000d
当我仰望错误代码0x800700d它告诉我...
分析:这个问题是由于ApplicationHost.config文件或Web.config文件包含格式不正确的XML元素。 要解决此问题,请参阅解决方案1。
然后,提供的分辨率...
建议解决方案:从ApplicationHost.config文件或从Web.config文件中删除格式不正确的XML元素。
不过,我看不出有什么异常的XML,当我完全删除的web.config文件,该网站加载,但URL重写不工作(明显)。 此外,即使我删除的web.config文件中的所有XML,留下一片空白,我得到了同样的错误。 它似乎有与web.config文件存在于所有的事实问题。
作为参考,这是我的web.config的内容...
<?xml version="1.0" encoding="UTF-8"?>
<!-- this file can be deleted if you're not planning on using URL rewriting with IIS 7. -->
<!-- you can add your own files and folders that should be excluded from URL rewriting by adding them to the "pattern" below. -->
<!-- please read the online documentation on http://cfwheels.org for more information about URL rewriting. -->
<!-- SET ENABLED TO TRUE BELOW TO TURN ON THE URL REWRITING RULES -->
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="ColdFusion on Wheels URL Rewriting" enabled="true">
<match url="^(.*)$" ignoreCase="true" />
<conditions logicalGrouping="MatchAll">
<add input="{SCRIPT_NAME}" negate="true" pattern="^/(flex2gateway|jrunscripts|cfide|cfformgateway|railo-context|files|images|javascripts|miscellaneous|stylesheets|robots.txt|sitemap.xml|rewrite.cfm)($|/.*$)" />
</conditions>
<action type="Rewrite" url="/rewrite.cfm/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
任何有关于如何解决此问题的任何想法?