0

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.

Rahul TS
  • 1,208
  • 7
  • 26
  • 53

3 Answers3

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

David Conde
  • 4,631
  • 2
  • 35
  • 48
2

Have you not considered writing your own using a router.php file?

http://docs.joomla.org/Routing

Jeepstone
  • 2,591
  • 5
  • 22
  • 38
  • Read the routing documentation so you understand how Joomla is getting the necessary parameters to build the page correctly. Once you understand that you can use the built in URLs or you can use a 3rd party extension and write your own plugin to integrate your component. – Brent Friar Sep 07 '10 at 12:13
1

Although sh404sef is useful I've found ACEsef to be better.

Martin
  • 10,294
  • 11
  • 63
  • 83
  • ACEsef is an SEF component righ?? I think it may be more useful for redirecting pages. can i use it with dynamic urls as i said above – Rahul TS Sep 06 '10 at 05:51
  • Yes you just need to setup the correct parameters for the component – Martin Sep 06 '10 at 17:51