当前位置:首页 > CMS教程 > 其它CMS > 列表

FCKeditor 伪静态下不能使用的解决方法

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-03 16:32:21 浏览: 评论:0 

提示为:找不到页面/fckeditor/editor/fckeditor.aspx 那是因为正则中把fckeditor.html也替换成aspx的问题,而实际上并不存在后缀为aspx的文件,针对这些错误,我采用了下面的方法.

第1步:在正则中优先替换fck编辑器文件夹的路径,并替换为htm后缀,代码如下:

  1. <rewriterrule>  
  2. <lookfor>~/fckeditor/(.*).html</lookfor>  
  3. <sendto>~/fckeditor/$1.htm</sendto>  
  4. </rewriterrule>  
  5. <rewriterrule>  
  6. <lookfor>(.*).html</lookfor>  
  7. <sendto>$1.aspx</sendto>  
  8. </rewriterrule> 

第2步:为防止出现“没有为扩展名".htm”注册的生成提供程序”的错误,在web.config中加入如下代码:

  1. <compilation debug="false">  
  2. <buildproviders>  
  3. <add extension=".htm" type="system.web.compilation.pagebuildprovider" />  //开源软件:phpfensi.com 
  4. </buildproviders>  
  5. </compilation> 

第3步:将fckeditro中所有的html后缀修改为htm,为避免fck链接中的错误,再用dw将fck内.html的代码批量替换为.htm.

Tags: FCKeditor伪静态 FCKeditor不能使用

分享到: