umbraco 前端网站突然停止工作
我创建了一个 Web 应用程序,并将 default.aspx 页面放置在 umbraco 的根文件夹(即 httpdocs 文件夹)中,并将应用程序 dll 放置在 bin 文件夹中。
我使用名称“Default.aspx”,因为其他名称不起作用。
现在的问题是所有页面都重定向到default.aspx页面(我没有在umbraco设置中的任何地方进行任何配置更改)
我找到了这个根本原因并从bin文件夹中删除了default.aspx页面及其各自的dll 。
找不到资源。 描述:HTTP 404。您正在查找的资源(或其依赖项之一)可能已被删除、名称已更改或暂时不可用。请检查以下 URL 并确保拼写正确。
请求的 URL:/default.aspx
我卡在这里并努力解决它。请帮助我解决这个
问题,谢谢, 斯里拉克什米
I created one webapplication and placed the default.aspx page in the root folder of the umbraco (i.e., httpdocs folder) and the application dll into the bin folder.
I used the name “Default.aspx” as the other names are not working.
Now the issue is all the pages are redirecting to the default.aspx page (I haven’t made any config changes anywhere in the umbraco setup)
I found this root cause and removed the default.aspx page and its respective dll from the bin folder.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /default.aspx
I stuck up here and struggling to resolve it.Please help me out on this
THanks,
Srilakshmi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否在以管理员身份登录 Umbraco 后尝试过通过右键单击顶级内容文件夹图标来尝试“重新发布网站”选项?
Have you tried the 'republish website' option by right-clicking on the top level content folder icon after logging into Umbraco as an admin?
对于它的价值 - 我知道这是一个老问题 - 但是当 default.aspx 被覆盖、删除或以其他方式更改以便它不会调用 umbraco.UmbracoDefault 时,就会发生这种情况。只需确保 default.aspx 仅包含以下代码:
我认为这可能对其他人有帮助,因为我今天忽略了类似的问题:)
For what it's worth - and I know this is an old question - but this happens when default.aspx has been either overwritten, deleted or otherwise changed so that it doesn't call umbraco.UmbracoDefault. Just make sure that default.aspx contains only the following code :
Thought this might help others as I overlooked it today with a similar problem :)