gpt4 book ai didi

php - 不同地区的锂电路线

转载 作者:搜寻专家 更新时间:2023-10-31 21:31:10 24 4
gpt4 key购买 nike

我在 Li3 中有一条 i18n 路由,如下所示:

Router::connect('/{:locale:[a-z]{2}/{:args}', [], [
'continue' => true,
'persist' => ['locale'],
]);

这样,当用户(或爬虫)使用语言前缀进入我的网站时,区域设置将用于生成网站上的每个链接。

出于 SEO 目的,我需要在其他语言环境中生成 URL,例如:

GET /en/profile/john-doe
Canonical URL: https://www.example.com/en/profile/john-doe
Link hreflang for es: https://www.example.com/es/profile/john-doe
Link hreflang for pt: https://www.example.com/pt/profile/john-doe

我常用的方法是克隆当前请求,更改语言环境,从 persist 数组中删除 locale,并使用 $request->to('url ', ['absolute' => true]);.

但我无法摆脱语言环境。

关于如何解决这个问题有什么建议吗?

最佳答案

我终于解决了扩展 HTML 辅助类的问题:

use lithium\template\helper\Html as BaseHtml;

class Html extends BaseHtml
{
/**
* Returns href lang link for a locale for the current request.
*
* @param string $locale
* @return string <link />
*/
public function getHrefLinkForLocale($locale)
{
return $this->link(
'Canonical URL for ' . $locale,
compact('locale') + $this->getRequest()->params,
[
'absolute' => true,
'rel' => 'alternate',
'type' => 'alternate',
'hreflang' => $locale,
]
);
}
}

关于php - 不同地区的锂电路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29901921/

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