首页 文章

Opencart SEO URL

提问于
浏览
3

我的问题是,我已经成功安装了SEO组件,但它运行良好但是;

在主页上,最新产品模块显示了网址

http://www.domain.com/product-21.html

在类别页面上,产品显示的是网址

http://www.domain.com/category/product-21.html

我想将类别URL放在最新的产品模块中,因此它与类别页面上的相同 . 有没有人对此有任何想法?

2 回答

  • 0

    我不清楚你想要提到什么,但如果你想编辑你的网址http://www.domain.com/category - > http://www.domain.com/category.html那里're many way you can edit file .htaccess or in my way you can edit code in seo_url.php like this: find this code return $url_info[' scheme '] . ':// ' . $url_info[' host '] . (isset($url_info[' port ']) ? ':' . $url_info[' port '] : ' ') . str_replace(' /index.php ', ' ', $url_info[' path ']) . $url . $query; and replace with this return $url_info[' scheme '] . ':// ' . $url_info[' host '] . (isset($url_info[' port ']) ? ':' . $url_info[' port '] : ' ') . str_replace(' /index.php ', ' ', $url_info[' path ']) . $url . $query.' html '; (if you' ve编辑您的产品seo字样如product.html请移动.html postfix,因为这会导致product.html.html)

  • 0

    转到管理面板中的该产品表单,在数据部分,您会找到“SEO关键字:”选项添加值,它将在主页链接中自动更改 .

相关问题