gpt4 book ai didi

php - 从 OpenCart 中删除 index.php?route=common/home

转载 作者:IT王子 更新时间:2023-10-29 01:24:18 25 4
gpt4 key购买 nike

我目前在 OpenCart Admin 中将 User SEO URL's 设置为 Yes。

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

到目前为止,所有标签和 SEO 链接都有效;该命令已达到预期效果。

但是对于主页和其他一些链接;我如何删除:

index.php?route=common/home

从网址?我是否必须在硬编码 PHP 文件中进行字面上的查找和替换并冒着升级的风险,还是有其他方法?

(没有膨胀的性能,即没有像 vQmod 这样的业余工具)

最佳答案

要简单地删除它,您可以在 /catalog/controller/common/seo_url.php 中进行基本替换

查找:

return $link;

它之前在一个新行上放置:

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

由 TheBlackBenzKid 编辑:如果您想要完整的 SEO,只需使用这一行而不是上面的行:

$link = str_replace('index.php?route=', '', $link);

还要确保在商店的管理面板中启用了 SEO URL。

关于php - 从 OpenCart 中删除 index.php?route=common/home,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10813809/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com