How can I create custom SEO-friendly URLs in OpenCart?

前端 未结 8 1647
天命终不由人
天命终不由人 2020-11-30 22:29

How can you customize system URLs in OpenCart? For example, I would like http://example.com/index.php?route=checkout/cart to be displayed as http://example.com/cart

8条回答
  •  死守一世寂寞
    2020-11-30 23:16

    Put this near the top of your index.php file. It was the only solution that worked for me.

    switch($_SERVER["REQUEST_URI"])
    {
        case '/old-url': $three01 = "/new-url"; break;
    }
    
    if($three01)
    {
        header("HTTP/1.1 301 Moved Permanently"); header("Location: ".$three01); exit;
    }
    

提交回复
热议问题