Questions tagged «url»

4
获取当前的Joomla URL
以下代码可在Joomla 1.6中使用,但在3.x中会引发“严格标准”错误: 严格标准:仅变量应通过引用分配 //Get the full URL for sharing purposes $uri = & JFactory::getURI(); $absolute_url = $uri->toString(); <?php echo $absolute_url; ?> 如何在Joomla 3.x中出现错误的情况下使代码正常工作?
25 url 

2
如何在Joomla中处理重复的内容/ URL?
我刚刚发现了一个主要的SEO问题,尽管我暂时已解决了该问题;我试图弄清楚为什么它可能首先发生,以及是否有错误或与Joomla本身有关。首先是问题: 当我使用Moz爬网一个站点时,它显示了主页的四个重复内容,这是意外的。因此,例如对于主页http://www.foo.com,它显示了重复的内容URL,如下所示: foo.com/2-uncategorised/1-offers (canonical = foo.com/2-uncategorised/1-offers) foo.com/2-uncategorised/2-enquiry (canonical = foo.com/2-uncategorised/2-enquiry) foo.com/2-uncategorised/3-products (canonical = foo.com/2-uncategorised/3-products) 所有这些链接都只是在加载首页内容,而元数据详细信息来自本文。显然,这表明Joomla正在自动创建链接,而我发现4个链接都相同。文章中的链接是这样的: index.php?option=com_content&view=article&id=1&catid=2&Itemid=1 index.php?option=com_content&view=article&id=2&catid=2&Itemid=1 index.php?option=com_content&view=article&id=3&catid=2&Itemid=1 该Itemid = 1对应于这解释了为什么网页无法载入网页的菜单项。我尝试重新创建问题,但无法完成。根据添加内容的人员,以下是他们在创建这些文章和其中的链接时执行的步骤: 创建文章 使用内容编辑器中的“文章”标签添加指向其他文章的链接。 创建文章的菜单项 所以我想知道这里是否有明显的问题。我很困惑,因为有100多篇文章,但是只有大约5篇文章发生了。谢谢。


3
从Joomla 3网址中删除商品ID
我正在尝试从Joomla 3 URL中删除商品ID。我四处搜寻,回应在 components\com_content\router.php 改变0以1在$advanced = $params->get('sef_advanced_link', 1); 在第38和290行 并注释掉了 if (strpos($segments[0], ':') === false) { $vars['view'] = 'article'; $vars['id'] = (int)$segments[0]; return $vars; } 我认为它在Joomla 2.5中效果很好,因为所有评论都提到了这一点。 但是在我的Joomla 3.3网站上,它对我没有作用。 在不为每篇文章创建菜单项的情况下如何实现?
9 joomla-3.x  php  url 

3
使用Joomla重定向组件修复损坏的URL
任何人都可以帮助使用J3重定向组件来修复这种损坏的链接: https://www.portal-gestao.com/whatever/whatever/9999-title-of-the-page 至: https://www.portal-gestao.com/item/9999-title-of-the-page 和这个: http://www.portal-gestao.com/whatever/whatever/itemlist/tag/name-of-the-tag.html 至: https://www.portal-gestao.com/item/tag/gurus.html 和这个: http://www.portal-gestao.com/whatever/whatever/itemlist/user/9999-name-of-author.html 收件人:http : //www.portal-gestao.com/item/author/3707-name-of-author.html 非常感谢您的帮助!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.