Url rewriting 在Joomla 3组件中将GET方法URL更改为SEO URL

Url rewriting 在Joomla 3组件中将GET方法URL更改为SEO URL,url-rewriting,seo,joomla3.0,joomla-component,Url Rewriting,Seo,Joomla3.0,Joomla Component,我想从一个模块向Joomla 3中的一个组件发送一个参数,这是显示其文章的日期 因此,我通过GET方法发送日期,如下所示: <a href="http://127.0.0.1/web43/archives.html?date=2014-12-29&option=com_arch&Itemid=10371"> list of articles on 2014/12/29 </a> <a href="http://127.0.0.1/web43/a

我想从一个模块向Joomla 3中的一个组件发送一个参数,这是显示其文章的日期

因此,我通过GET方法发送日期,如下所示:

<a href="http://127.0.0.1/web43/archives.html?date=2014-12-29&option=com_arch&Itemid=10371">
  list of articles on 2014/12/29
</a>
<a href="http://127.0.0.1/web43/archives/2014-12-29">
  list of articles on 2/2/2014
</a>
一切正常。我可以在com_arch组件的model文件夹中获取PHP文件的参数。。。 但是这个URL对于搜索引擎来说既丑陋又不友好

我想要这样的东西:

<a href="http://127.0.0.1/web43/archives.html?date=2014-12-29&option=com_arch&Itemid=10371">
  list of articles on 2014/12/29
</a>
<a href="http://127.0.0.1/web43/archives/2014-12-29">
  list of articles on 2/2/2014
</a>
可能吗?如何做到这一点?

希望这有助于:

它是关于router.php文件的