伪静态下不能使用FCKeditor的解决方法
程序员文章站
2022-06-23 21:50:05
在使用fckeditor的时候,可能会碰到以下这个问题,就是在编辑器页面出错,提示为:找不到页面/fckeditor/editor/fckeditor.aspx 那是因为正...
在使用fckeditor的时候,可能会碰到以下这个问题,就是在编辑器页面出错,提示为:找不到页面/fckeditor/editor/fckeditor.aspx 那是因为正则中把fckeditor.html也替换成aspx的问题,而实际上并不存在后缀为aspx的文件。针对这些错误,我采用了下面的方法:
第1步:在正则中优先替换fck编辑器文件夹的路径,并替换为htm后缀。
<rewriterrule>
<lookfor>~/fckeditor/(.*).html</lookfor>
<sendto>~/fckeditor/$1.htm</sendto>
</rewriterrule>
<rewriterrule>
<lookfor>(.*).html</lookfor>
<sendto>$1.aspx</sendto>
</rewriterrule>
第2步:为防止出现“没有为扩展名".htm”注册的生成提供程序”的错误,在web.config中加入
<compilation debug="false">
<buildproviders>
<add extension=".htm" type="system.web.compilation.pagebuildprovider" />
</buildproviders>
</compilation>
第3步:将fckeditro中所有的html后缀修改为htm,为避免fck链接中的错误,再用dw将fck内.html的代码批量替换为.htm
结束语:经修改后,本人的fck已经能正常使用,但因为fck内众多功能,并不能一一尝试,有时间的朋友或者追求完美的朋友可以自己多尝试一下。
第1步:在正则中优先替换fck编辑器文件夹的路径,并替换为htm后缀。
复制代码 代码如下:
<rewriterrule>
<lookfor>~/fckeditor/(.*).html</lookfor>
<sendto>~/fckeditor/$1.htm</sendto>
</rewriterrule>
<rewriterrule>
<lookfor>(.*).html</lookfor>
<sendto>$1.aspx</sendto>
</rewriterrule>
第2步:为防止出现“没有为扩展名".htm”注册的生成提供程序”的错误,在web.config中加入
复制代码 代码如下:
<compilation debug="false">
<buildproviders>
<add extension=".htm" type="system.web.compilation.pagebuildprovider" />
</buildproviders>
</compilation>
第3步:将fckeditro中所有的html后缀修改为htm,为避免fck链接中的错误,再用dw将fck内.html的代码批量替换为.htm
结束语:经修改后,本人的fck已经能正常使用,但因为fck内众多功能,并不能一一尝试,有时间的朋友或者追求完美的朋友可以自己多尝试一下。
上一篇: js+css3实现简单时钟特效