FCKeditor在asp.net中重写url有问题吗?

时间:2011-02-16 06:29:53

标签: c# asp.net fckeditor

我在我的项目中使用了FCKeditor。在我的项目中添加url重写之前它工作正常。 现在我无法正确地从我的fckeditor上传图像。

我正在使用Intelligencia.UrlRewriter在asp.net中重写网址。

任何人都可以帮助我解决这类问题吗?

2 个答案:

答案 0 :(得分:2)

我猜测ISAPI重写规则正在影响FCKEditor访问必要的html文件的位置,导致永久404。

添加规则以排除图像文件夹被重写,你应该好好去。

请点击此处查看有关设置规则的一些信息:http://urlrewriter.net/index.php/support/using

答案 1 :(得分:1)

你有web.config文件吗?如果是,请尝试该文件中的这些设置

<appsettings>
<add key="FCKeditor:UserFilesPath" value="~/UserFilesUpload" /> 
</appsettings>