Magento 2:使用404页面而不是自动搜索

时间:2017-06-30 06:20:48

标签: error-handling magento2

我们运行Magento 2.1.7并遇到以下问题:

当输入不存在的URL时,magento会使用该路径启动自动搜索。如果输入了错误的网址,我们希望重定向到404错误页面。

例如: 正确的网址= www.domain.com/category1/product1

当您输入拼写错误的网址时(www.domain.com/category1/ppproduct1)magento重定向到搜索页面并在“category1 ppproduct1”之后开始搜索

任何想法如何防止这种情况?

1 个答案:

答案 0 :(得分:0)

转到管理面板,找到以下选项。

    private void DataGrid_OnAutoGeneratingColumn(object sender, DataGridAutoGeneratingColumnEventArgs e)
    {
        if (e.PropertyName == "avaible")
        {
            var b = (e.Column as DataGridCheckBoxColumn).Binding as Binding;
            b.Converter = new BoolToStringConverter();
            var dgtc = new DataGridTextColumn();
            dgtc.Binding = b;
            e.Column = dgtc;
        }
    }

<强> store->configuaration->web->Find the "Default Pages" option

更改此设置并检查。清除缓存。