FCKeditor 伪静态下不能使用的解决方法
发布:smiling 来源: PHP粉丝网 添加日期:2015-04-03 16:32:21 浏览: 评论:0
提示为:找不到页面/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" /> //开源软件:phpfensi.com
- </buildproviders>
- </compilation>
第3步:将fckeditro中所有的html后缀修改为htm,为避免fck链接中的错误,再用dw将fck内.html的代码批量替换为.htm.
Tags: FCKeditor伪静态 FCKeditor不能使用
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)