我正在使用 IIS Url Rewrite 创建友好的 url,我注意到在启用它后 radeditor 无法像图像中那样呈现:http://i.stack.imgur.com/TZo2O.png
在 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="Default.aspx?name={R:1}" />
</rule>
</rules>
</rewrite>
我已将 DialogHandler 从 aspx 更改为 axd 并将其路径更改为如下所示并且也无法正确渲染
<add path="~/Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />