Joomla URL 中使用冒号的意义

发布于 2024-12-11 04:10:07 字数 60 浏览 0 评论 0原文

我需要知道,joomla 是否对组件或视图中的冒号有任何意义?

这个命名约定有什么东西吗?

I need to know, if joomla gives any significance to a colon in within component or view?

Is there something in this naming convention?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昔日梦未散 2024-12-18 04:10:07

冒号仅用在“id”参数中,以将数字 id 与用于 SEF URL 的 slug 分隔开。拥有景观和组件名称不应使用任何冒号。

例如:
非 sef URL - /index.php?option=com_content&view=article&id=45:my-article-title
Sef URL - /my-article-title.html

另外,在实际使用 id 时,您应该只使用数字部分,可以在代码中使用 JRequest::getInt('id') 提取数字部分。

The colon is only used in the 'id' parameter to separate the numeric id from the slug used for SEF URLs. With view & component names you should not use any colons.

Eg:
Non-sef URL - /index.php?option=com_content&view=article&id=45:my-article-title
Sef URL - /my-article-title.html

Also when actually using the id, you should only use the numeric part, which can be extracted using JRequest::getInt('id') in your code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文