Remove index.php?route=common/home from OpenCart

前端 未结 15 1145
太阳男子
太阳男子 2020-11-29 04:56

I currently have User SEO URL\'s set to Yes in OpenCart Admin.

System -> Settings -> Store -> Server -> User SEO URL\'s

15条回答
  •  暖寄归人
    2020-11-29 05:14

    For me, the simplest way to do it:

    1- Go to /system/library/url.php

    2- Locate function link(

    3- Above return $url; put the following line:

    $url = str_replace('index.php?route=common/home', '', $url);
    

提交回复
热议问题