Change URL Pages for Different Languages in Magento 1.9

languagemagento-1.9url-rewrite

I have two pages in my store one in spanish and other in english.

I have the shortcode put, but when i changed between pages the URLs changes like this:
http://tienda.mabaonline.com/en/?___from_store=es

I want this http://tienda.mabaonline.com/en
How I can change it?

Best Answer

Firstly go to admin panel System -> Configuration Under Configuration -> Web -> Url options and change Add Store Code to Urls to ‘Yes’.

Then change template file app/design/frontend//default/template/page/switch/languages.phtml

search for this:

<a href="<?php echo $_lang->getCurrentUrl() ?>

and change it to this:

<a href="<?php echo $_lang->getCurrentUrl(false) ?>
Related Topic