伪静态下不能使用FCKeditor的解决方法
作者:
为了SEO,伪静态现在很流行,其中一些朋友采用URLRewriter.dll + IIS设置 .html读取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内众多功能,并不能一一尝试,有时间的朋友或者追求完美的朋友可以自己多尝试一下。
您可能感兴趣的文章:
- Fckeditor XML Request error:internal server error (500) 解决方法小结
- FCKeditor编辑器添加图片上传功能及图片路径问题解决方法
- ie9后浏览器fckeditor无法上传图片、弹出浮层内容不显示的解决方法
- fckeditor在ie9中无法弹出对话框的解决方法(弹出层兼容问题)
- FCKeditor 图片上传进度条不动的解决方法
- asp.net+FCKeditor上传图片显示叉叉图片无法显示的问题的解决方法
- 浏览器执行history.go(-1) FCKeditor编辑框内显示html源代码的解决方法
- Ewebeditor及fckeditork单引号问题的解决方法
- FCKeditor 2.6 编码错误导致修改的内容出现乱码的解决方法
- FCKEDITOR 的高级功能和常见问题的解决方法
- jsp fckeditor 上传中文图片乱码问题的解决方法
- Asp.net FCKEditor 2.6.3 上传文件没有权限解决方法
- fckeditor部署到weblogic出现xml无法读取及样式不能显示问题的解决方法