Umbraco V6 404 not handled properly according to culture

情到浓时终转凉″ 提交于 2019-12-24 03:08:34

问题


I have an umbraco site (umbraco v6), and I have set up custom 404 handling as per http://our.umbraco.org/Documentation/Using-Umbraco/Config-files/umbracoSettings/index. My content tree is as follows:

Content
    Root
        Greek-Homepage
            Greek-Content
            Greek-Not-found (id: 1303)
        English-Homepage
            English-Content
            English-Not-found (id: 1304)

And I've set up the <errors> tag as follows:

        <error404>
        <errorPage culture="default">1303</errorPage>
        <errorPage culture="el-GR">1303</errorPage>
        <errorPage culture="en-US">1304</errorPage>
    </error404>

No matter what I try, I can't get the site to display the 1303 (Greek) node. It only shows the 1304 (English) node.

What am I doing wrong here?

来源:https://stackoverflow.com/questions/16101384/umbraco-v6-404-not-handled-properly-according-to-culture

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!