joomla 中的 sef 用于动态 url
我已经制作了一个 joomla 组件并明智地制作了该网站。问题是组件中的某些 URL 通过 get 方法放置值。以便下一页可以相应地完成任务。 这样
index.php?option=com_mediaonline&view=mediaonline&task=234&id=837
下一页将相应地处理任务,任务 = 234 和 id = 837。如果我尝试将其设置为 sef url,那么什么都不会正常工作。
是否有任何 sef 组件或其他扩展可用于解决此问题。
I have made a joomla component and wise to make the site sef. The problem is that some of the URL from the components put values by get method. so that the next page can do the task accordingly.
say
index.php?option=com_mediaonline&view=mediaonline&task=234&id=837
so that the next page will process the task accordingly, with task = 234 and id = 837. If i try to make it sef urls then nothing will work properly.
Is there any sef components or other extension available to solve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最好的组件是 sh404sef,在 extensions.joomla.org 中查找它,并为您的组件制作 sef 文件不会超过 2 天
The best component for this is sh404sef, look for it in extensions.joomla.org and making the sef file for your component won't take more than 2 days
您是否没有考虑过使用 router.php 文件编写自己的文件?
http://docs.joomla.org/Routing
Have you not considered writing your own using a router.php file?
http://docs.joomla.org/Routing
虽然 sh404sef 很有用,但我发现 ACEsef 更好。
Although sh404sef is useful I've found ACEsef to be better.