Şu anda magento kullanarak özel adresler / yönlendirme oluşturmak çalışıyorum bakıyorum, şu anda ben yerel modülü içinde config.xml varsayılan bir rota belirledik.
<frontend>
<routers>
<portfolios>
<use>standard</use>
<args>
<module>Custom_Portfolios</module>
<frontName>portfolios</frontName>
</args>
</portfolios>
</routers>
<default>
<router>portfolios</router>
</default>
</frontend>
This currently works with the url path of /portfolios/index/action/custom-string which is the magento default route. What i am trying to achieve is to have /portfolios/custom-string.html i have attempted to use a mod_rewrite rule with no success, i have found some references in relation to utilising a custom suffix of .html which i have added to the same config.xml file.
<default><portfolios><seo><portfolios_url_suffix>.html</portfolios_url_suffix></seo></portfolios></default>
Ben yönlendirme ile ilgili alan fırtına dokümanlar baktı ve sadece veya bilgi biraz dışarı tarihli olduğu varsayılan yönlendirme yolları Alakalı bulduk.
Muhtemelen bir takip edilmesi kolay ve Alakalı öğretici ile magento içinde yönlendirme kontrol etmek iyi bir yöntem biliyor musunuz? D çok teşekkürler: eğer öyleyse lütfen paylaşın.