当我运行我的.aspx页面时,我收到以下错误。
错误Code0x8007000d
配置部分的“重写”无法读取,因为它缺少一个段声明
的Response.Write(请求( “Q”))
我的主机服务器作为IIS 7安装了URL重写功能启用(这就是他们声称)
我的web.config文件有以下行:
注意:节点下面有蓝色的波浪线
<rewrite> <rules> <rule name="RewriteUserFriendlyURL1" stopProcessing="true"> <match url="^([^/]+)/?$" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="v.aspx?q={R:1}" /> </rule> </rules> </rewrite>
可能有人找到解决方案。
TIA
解决方法
确保你的< rewrite>包含在< system.webServer>< /system.webServer\u0026gt中;部分。
<configuration> <system.webServer> <rewrite> <rules> <rule name="RewriteUserFriendlyURL1" stopProcessing="true"> <match url="^([^/]+)/?$" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="v.aspx?q={R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>