与加.html扩展的自定义网址Magento的自定义模块(Magento custom module

2019-10-19 05:00发布

我已经创建了一个模块和其前端的名字是考验。 现在,我要像一个网址

 www.exmpale.com/test/red.html (original structure is like 'test/index/index/valuid/1/').
 www.exmpale.com/test/green.html (original URL is like 'test/index/index/valueid/3/').

Wheremy crontroller是indexCrontroller和行动indexAction何红/绿,未来将动态从表中。 表是结构是一样

 tab_id  value
 1      red

 2      blue
 3      green

请帮我。

Answer 1:

您需要实现这些网址的路由器 。 请点击此链接

http://inchoo.net/ecommerce/magento/custom-router-in-magento/



Answer 2:

在使用htaccess文件301重定向,如下所示:

在根文件夹.htaccess文件下面的代码粘贴:

Redirect 301 /test/index/index/valuid/1/ www.exmpale.com/test/red.html

Redirect 301 /test/index/index/valuid/3/ www.exmpale.com/test/green.html



文章来源: Magento custom module with custom url with add .html extension