当前位置: 代码迷 >> 综合 >> C# 使用Ueditor出现http://localhost:***/ueditor/net/controller.ashx?action=config&&noCache=***404问题解决
  详细解决方案

C# 使用Ueditor出现http://localhost:***/ueditor/net/controller.ashx?action=config&&noCache=***404问题解决

热度:11   发布时间:2024-02-23 09:53:36.0

问题描述:

http://localhost:8080/ueditor/net/controller.ashx?action=config&&noCache=1601171905273 404 (Not Found)

问题分析:

出现这个问题主要是服务器路径配置不对,导致的404报错。

问题解决:

1、ueditor.config.js的serverUrl配置不对。

仔细检查了controller.ashx路径,发现controller.ashx路径为http://localhost:8080/ueditor/controller.ashx,然后我仔细检查ueditor.config.js发现serverUrl: URL + "net/controller.ashx",实际上应该是serverUrl: URL + "controller.ashx"

 

 

 

  相关解决方案