Jump to content

(SOLUCIONADO) Redirección interna


Recommended Posts

Quiero redireccionar este enlace http://miweb.com/index.php?id_category=35&controller=category&id_lang=1 que es de una subacategoría dentro del menú horizontal superior a otro enlace que podría ser este http://miweb.com/index.php?id_cms=4&controller=cms&id_lang=1 que está en el menú del módulo CMS

Here's a small javascript code to do this:

{if isset($smarty.get.id_category) && $smarty.get.id_category == 35}
<script>
    window.location.replace("/index.php?id_cms=4&controller=cms&id_lang=1");
</script>
{/if}

Place this code in your footer.tpl file from your theme directory.

Link to comment
Share on other sites

Solucionado. Encontré esta web que genera el código www.rapidtables.com/web/tools/redirect-generator.htm En el archivo .htaccess puse en esa posición la línea que pone Redirect.

 

 

# ~~start~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again
# .htaccess automaticaly generated by PrestaShop e-commerce open-source solution
# http://www.prestashop.com - http://www.prestashop.com/forums



Redirect 301 /es/35-esquemas http://miweb.com/es/content/4-sobre-nosotros



<IfModule mod_rewrite.c>
<IfModule mod_env.c>
SetEnv HTTP_MOD_REWRITE On
</IfModule>

RewriteEngine on

 

... el archivo .htaccess sigue

Edited by Wododin (see edit history)
Link to comment
Share on other sites

  • nadie locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...