Jump to content

[SOLVED] 301 redirects fail


Recommended Posts

Hi again,

 

I've my shop running again but the 301 redirects aren't working. Please chek my .htaccess and tell me if anithing is wrong case I can't see nothing:

# ~~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

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

RewriteEngine on


#Domain: tienda.comohacer.eu
RewriteRule . - [E=REWRITEBASE:/]
RewriteRule ^api$ api/ [L]

RewriteRule ^api/(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L]

# Images
RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L]
RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L]
RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.jpg [L]
RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L]
RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L]
RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L]
RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L]
RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L]
RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L]
RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L]
# AlphaImageLoader for IE and fancybox
RewriteRule ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L]

# Dispatcher
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L]
</IfModule>

AddType application/vnd.ms-fontobject .eot
AddType font/ttf .ttf
AddType font/otf .otf
AddType font/woff2 .woff2
AddType application/x-font-woff .woff
<IfModule mod_headers.c>
	<FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|svg)$">
		Header set Access-Control-Allow-Origin "*"
	</FilesMatch>
</IfModule>

<IfModule mod_expires.c>
	ExpiresActive On
	ExpiresByType image/gif "access plus 1 month"
	ExpiresByType image/jpeg "access plus 1 month"
	ExpiresByType image/png "access plus 1 month"
	ExpiresByType text/css "access plus 1 week"
	ExpiresByType text/javascript "access plus 1 week"
	ExpiresByType application/javascript "access plus 1 week"
	ExpiresByType application/x-javascript "access plus 1 week"
	ExpiresByType image/x-icon "access plus 1 year"
	ExpiresByType image/svg+xml "access plus 1 year"
	ExpiresByType image/vnd.microsoft.icon "access plus 1 year"
	ExpiresByType application/font-woff "access plus 1 year"
	ExpiresByType application/x-font-woff "access plus 1 year"
	ExpiresByType font/woff2 "access plus 1 year"
	ExpiresByType application/vnd.ms-fontobject "access plus 1 year"
	ExpiresByType font/opentype "access plus 1 year"
	ExpiresByType font/ttf "access plus 1 year"
	ExpiresByType font/otf "access plus 1 year"
	ExpiresByType application/x-font-ttf "access plus 1 year"
	ExpiresByType application/x-font-otf "access plus 1 year"
</IfModule>

<IfModule mod_headers.c>
	Header unset Etag
</IfModule>
FileETag none
<IfModule mod_deflate.c>
	<IfModule mod_filter.c>
		AddOutputFilterByType DEFLATE text/html text/css text/javascript application/javascript application/x-javascript font/ttf application/x-font-ttf font/otf application/x-font-otf font/opentype image/svg+xml
	</IfModule>
</IfModule>

#If rewrite mod isn't enabled
ErrorDocument 404 /index.php?controller=404

# ~~end~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again

# Redirecciones
# CMS 1
Redirect 301 /condiciones-de-uso/ http://tienda.comohacer.eu/es/content/3-condiciones-de-uso'>http://tienda.comohacer.eu/es/content/3-condiciones-de-uso
Redirect 301 /politica-de-privacidad/ http://tienda.comohacer.eu/es/content/2-politica-privacidad'>http://tienda.comohacer.eu/es/content/2-politica-privacidad
Redirect 301 /contacto/ http://tienda.comohacer.eu/es/contacto'>http://tienda.comohacer.eu/es/contacto
Redirect 301 /quienes-somos/ http://tienda.comohacer.eu/
Redirect 301 /preguntas-frecuentes/ http://tienda.comohacer.eu/es/content/1-faqs-preguntas-frecuentes
Redirect 301 /tienda/ http://tienda.comohacer.eu/
Redirect 301 /mi-cuenta/ http://tienda.comohacer.eu/es/mi-cuenta
Redirect 301 /carrito/ http://tienda.comohacer.eu/es/carrito
# CMS 2
Redirect 301 /es/categoria/3-informacion-de-interes http://tienda.comohacer.eu/categoria/2-informacion-de-interes
Redirect 301 /es/content/1-faqs-preguntas-frecuentes http://tienda.comohacer.eu/pag/6-faq-s-preguntas-frecuentes
Redirect 301 /es/content/2-politica-privacidad http://tienda.comohacer.eu/pag/7-politica-de-privacidad
Redirect 301 /es/content/3-condiciones-de-uso http://tienda.comohacer.eu/pag/8-condiciones-de-uso
Redirect 301 /es/content/5-formas-de-contacto http://tienda.comohacer.eu/pag/9-formas-de-contacto
Redirect 301 /es/content/6-envios http://tienda.comohacer.eu/pag/10-envios
Redirect 301 /es/contacto http://tienda.comohacer.eu/contactanos
Redirect 301 /es/ http://tienda.comohacer.eu/
Redirect 301 /en/ http://tienda.comohacer.eu/
Redirect 301 /es/mi-cuenta http://tienda.comohacer.eu/mi-cuenta
Redirect 301 /es/carrito http://tienda.comohacer.eu/pedido-rapido
# CATS 1
Redirect 301 /categoria-producto/electronica-facil/ http://tienda.comohacer.eu/es/6-electronica-facil/
Redirect 301 /categoria-producto/energias-renovables/ http://tienda.comohacer.eu/es/8-energias-renovables/
Redirect 301 /categoria-producto/placas/raspberry-pi/ http://tienda.comohacer.eu/es/10-raspberry-pi/
Redirect 301 /categoria-producto/placas/arduino/ http://tienda.comohacer.eu/es/9-arduino/
Redirect 301 /categoria-producto/reparaciones/ http://tienda.comohacer.eu/es/11-reparaciones/
Redirect 301 /categoria-producto/tv/ http://tienda.comohacer.eu/es/12-tv/
Redirect 301 /categoria-producto/wifi/ http://tienda.comohacer.eu/es/14-wifi/
Redirect 301 /categoria-producto/varios/ http://tienda.comohacer.eu/es/13-ofertas-finales/
# CATS 2
Redirect 301 /es/10-raspberry-pi/ http://tienda.comohacer.eu/12-raspberry-pi
Redirect 301 /es/22-impresoras-3d http://tienda.comohacer.eu/13-impresoras-3d
Redirect 301 /es/9-arduino http://tienda.comohacer.eu/14-arduino
Redirect 301 /es/8-energias-renovables http://tienda.comohacer.eu/15-energias-renovables
Redirect 301 /es/6-electronica-facil/ http://tienda.comohacer.eu/16-electronica-facil
Redirect 301 /es/12-tv http://tienda.comohacer.eu/17-tv
Redirect 301 /es/14-wifi http://tienda.comohacer.eu/18-wifi
Redirect 301 /es/13-ofertas-finales http://tienda.comohacer.eu/19-liquidacion
Redirect 301 /es/18-kits-raspberry-pi http://tienda.comohacer.eu/20-kits-completos-raspberry-pi
Redirect 301 /es/21-servicios http://tienda.comohacer.eu/21-servicios-raspberry-pi
Redirect 301 /es/16-almacenamiento-raspberry-pi http://tienda.comohacer.eu/22-almacenamiento-raspberry-pi
Redirect 301 /es/17-cajas-raspberry-pi http://tienda.comohacer.eu/23-cajas-raspberry-pi
Redirect 301 /es/19-cableado-raspberry-pi http://tienda.comohacer.eu/24-cableado-raspberry-pi
Redirect 301 /es/20-otros-accesorios http://tienda.comohacer.eu/25-otros-accesorios-raspberry-pi
Redirect 301 /es/24-liquidacion http://tienda.comohacer.eu/26-liquidacion-raspberry-pi
# PRO 1
Redirect 301 /raspberry-pi-model-b-512mb/ http://tienda.comohacer.eu/es/134-raspberry-pi-2-model-b-1gb/
Redirect 301 /es/33-comprar-raspberry-pi-model-b-512mb/ http://tienda.comohacer.eu/es/134-raspberry-pi-2-model-b-1gb/
Redirect 301 /raspberry-pi-model-b-512mb-tarjeta-sd-8gb-clase-4/ http://tienda.comohacer.eu/es/134-raspberry-pi-2-model-b-1gb/
Redirect 301 /es/16-comprar-kit-raspberry-pi-model-b-512mb-tarjeta-sd-8gb-clase-4/ http://tienda.comohacer.eu/es/134-raspberry-pi-2-model-b-1gb/
Redirect 301 /pack-x3-disipadores-para-raspberry-pi/ http://tienda.comohacer.eu/es/25-pack-x3-disipadores-para-raspberry-pi/
Redirect 301 /wifi-nano-150mbps-usb-2-0-802-11nbg/ http://tienda.comohacer.eu/es/23-wifi-nano-150mbps-usb-2-0-802-11nbg/
Redirect 301 /componentes-para-reparar-xbox-360/ http://tienda.comohacer.eu/es/31-comprar-kit-para-reparar-xbox-360/
Redirect 301 /es/31-comprar-kit-para-reparar-xbox-360/ http://tienda.comohacer.eu/
Redirect 301 /caja-transparente-para-raspberry-pi/ http://tienda.comohacer.eu/es/27-caja-transparente-para-raspberry-pi/
Redirect 301 /fuente-de-alimentacion-1a-para-raspberry-pi/ http://tienda.comohacer.eu/es/[spam-filter]fuente-de-alimentacion-2a-para-raspberry-pi/
Redirect 301 /es/24-comprar-fuente-de-alimentacion-1a-para-raspberry-pi/ http://tienda.comohacer.eu/es/[spam-filter]fuente-de-alimentacion-2a-para-raspberry-pi/
Redirect 301 /caja-oficial-para-raspberry-pi-transparente-muy-resistente/ http://tienda.comohacer.eu/es/17-caja-oficial-para-raspberry-pi-transparente-muy-resistente/
Redirect 301 /x6-celulas-solares-fotovoltaicas/ http://tienda.comohacer.eu/es/34-kit-x6-celulas-solares-fotovoltaicas/
Redirect 301 /es/34-kit-x6-celulas-solares-fotovoltaicas/ http://tienda.comohacer.eu/es/15-kit-panel-solar-65w-36-celulas-regulador-de-carga/
Redirect 301 /arduino-uno-rev3/ http://tienda.comohacer.eu/es/32-arduino-uno-rev3/
Redirect 301 /kit-de-inicio-de-raspberry-pi/ http://tienda.comohacer.eu/es/11-kit-de-inicio-de-raspberry-pi/
Redirect 301 /es/11-kit-de-inicio-de-raspberry-pi/ http://tienda.comohacer.eu/es/135-kit-inicio-raspberry-pi-2-model-b-1gb/
Redirect 301 /componentes-regulador-de-carga-mixto-panel-solar-aerogenerador/ http://tienda.comohacer.eu/es/40-kit-regulador-de-carga-mixto-panel-solar-aerogenerador/
Redirect 301 /pantalla-para-iphone-4-negro/ http://amzn.to/1FtqCBB
Redirect 301 /hub-usb-de-7-puertos-con-fuente-de-alimentacion-externa/ http://tienda.comohacer.eu/es/26-hub-usb-de-7-puertos-con-fuente-de-alimentacion-externa/
Redirect 301 /pendrive-4gb-exclusivo-de-comohacer-eu/ http://tienda.comohacer.eu/es/41-pendrive-4gb-exclusivo-de-comohacer-eu/
Redirect 301 /es/41-pendrive-4gb-exclusivo-de-comohacer-eu/ http://tienda.comohacer.eu/
Redirect 301 /pasta-termica-para-microprocesadores-1gr/ http://tienda.comohacer.eu/es/29-pasta-termica-para-microprocesadores-1gr/
Redirect 301 /tarjeta-sd-de-8gb-clase-6-de-samsung/ http://tienda.comohacer.eu/es/22-tarjeta-sd-de-8gb-clase-6-de-samsung/
Redirect 301 /componentes-del-panel-solar-65w-36-celulas-regulador-de-carga/ http://tienda.comohacer.eu/es/15-kit-panel-solar-65w-36-celulas-regulador-de-carga/
Redirect 301 /teclado-rii-i8-inalambrico-con-raton-touchpad/ http://tienda.comohacer.eu/es/8-teclado-rii-i8-inalambrico-con-raton-touchpad/
Redirect 301 /tarjeta-sd-de-8gb-clase-4-oficial-de-raspberry-pi-tarjeta-micro-sd-adaptador/ http://tienda.comohacer.eu/es/30-tarjeta-sd-de-8gb-clase-4-oficial-de-raspberry-pi-tarjeta-micro-sd-adaptador/
Redirect 301 /mini-antena-tdt-usb/ http://tienda.comohacer.eu/es/35-mini-antena-tdt-usb/
Redirect 301 /sat-finder-sf-95/ http://tienda.comohacer.eu/es/37-sat-finder-sf-95/
Redirect 301 /es/37-sat-finder-sf-95/ http://tienda.comohacer.eu/
Redirect 301 /componentes-detector-de-metales-casero-2/ http://tienda.comohacer.eu/es/36-kit-detector-de-metales-casero-2/
Redirect 301 /antena-wifi-usb-fast-fw150ud/ http://tienda.comohacer.eu/es/39-antena-wifi-usb-fast-fw150ud/
Redirect 301 /es/39-antena-wifi-usb-fast-fw150ud/ http://tienda.comohacer.eu/
Redirect 301 /cable-hdmi-v1-4-15m-1080p3d/ http://tienda.comohacer.eu/es/88-cable-hdmi-v14-15m-1080p3d/
Redirect 301 /cable-usb-tipo-ab-para-arduino/ http://tienda.comohacer.eu/es/20-cable-usb-tipo-ab-para-arduino/
Redirect 301 /cable-de-red-cruzado-categoria-5e/ http://tienda.comohacer.eu/es/10-cable-de-red-cruzado-categoria-5e/
Redirect 301 /raspberry-pi-model-256mb/ http://tienda.comohacer.eu/es/12-raspberry-pi-model-a-256mb/
Redirect 301 /es/12-raspberry-pi-model-a-256mb/ http://tienda.comohacer.eu/es/131-raspberry-pi-model-a-plus-256mb/
Redirect 301 /camara-oficial-para-raspberry-pi-5mpx-full-hd-1080p/ http://tienda.comohacer.eu/es/19-camara-oficial-para-raspberry-pi-5mpx-full-hd-1080p/
Redirect 301 /kit-gertboard-placa-de-expansion-para-raspberry-pi/ http://tienda.comohacer.eu/es/18-kit-gertboard-placa-de-expansion-para-raspberry-pi/
Redirect 301 /componentes-antena-wifi-direccional-de-alta-ganancia-conector-sma/ http://tienda.comohacer.eu/es/38-kit-antena-wifi-direccional-de-alta-ganancia-conector-sma/
Redirect 301 /cable-hdmi-v1-3-plano-18m-1080p3d/ http://tienda.comohacer.eu/es/88-cable-hdmi-v14-15m-1080p3d/
Redirect 301 /es/34-comprar-kit-x6-celulas-solares-fotovoltaicas/ http://tienda.comohacer.eu/es/15-kit-panel-solar-65w-36-celulas-regulador-de-carga/
Redirect 301 /es/37-comprar-sat-finder-sf-95/ http://amzn.to/1KYKMDX
Redirect 301 /es/39-comprar-antena-wifi-usb-fast-fw150ud/ http://amzn.to/1FBLgPF
Redirect 301 /es/15-fuentes-alimentacion-raspberry-pi http://tienda.comohacer.eu/es/[spam-filter]fuente-de-alimentacion-2a-para-raspberry-pi/
Redirect 301 /es/33-comprar-raspberry-pi-model-b-512mb/ http://tienda.comohacer.eu/es/10-raspberry-pi
Redirect 301 /es/16-comprar-kit-raspberry-pi-model-b-512mb-tarjeta-sd-8gb-clase-4/ http://tienda.comohacer.eu/es/115-kit-raspberry-pi-model-b-plus-512mb-tarjeta-sd-8gb-clase-4/
Redirect 301 /es/115-kit-raspberry-pi-model-b-plus-512mb-tarjeta-sd-8gb-clase-4/ http://tienda.comohacer.eu/es/10-raspberry-pi
Redirect 301 /es/11-comprar-kit-de-inicio-de-raspberry-pi/ http://tienda.comohacer.eu/es/113-kit-de-inicio-raspberry-pi-b-plus/
Redirect 301 /es/113-kit-de-inicio-raspberry-pi-b-plus/ http://tienda.comohacer.eu/es/10-raspberry-pi
Redirect 301 /es/98-comprar-kit-raspberry-pi-model-b-512mb-tarjeta-sd-8gb-clase-6/ http://tienda.comohacer.eu/es/116-kit-raspberry-pi-model-b-plus-512mb-tarjeta-sd-8gb-clase-6/
Redirect 301 /es/97-comprar-kit-raspberry-pi-model-b-512mb-tarjeta-sd-16gb-clase-10/ http://tienda.comohacer.eu/es/116-kit-raspberry-pi-model-b-plus-512mb-tarjeta-sd-8gb-clase-6/
Redirect 301 /es/99-comprar-kit-raspberry-pi-model-b-512mb-caja-oficial-transparente/ http://tienda.comohacer.eu/es/120-kit-raspberry-pi-b-plus-con-caja-oficial-transparente/
Redirect 301 /es/106-comprar-kit-de-inicio-economico-raspberry-pi/ http://tienda.comohacer.eu/es/113-kit-de-inicio-raspberry-pi-b-plus/
Redirect 301 /es/110-comprar-kit-raspberry-pi-model-b-512mb-tarjeta-sd-32gb-clase-10/ http://tienda.comohacer.eu/es/116-kit-raspberry-pi-model-b-plus-512mb-tarjeta-sd-8gb-clase-6/
Redirect 301 /es/41-comprar-pendrive-4gb-exclusivo-de-comohacer-eu/ http://tienda.comohacer.eu/es/
Redirect 301 /es/12-comprar-raspberry-pi-model-a-256mb/ http://tienda.comohacer.eu/es/131-raspberry-pi-model-a-plus-256mb/
Redirect 301 /es/33-comprar-raspberry-pi-model-b/ http://tienda.comohacer.eu/es/112-comprar-raspberry-pi-model-b-plus/
Redirect 301 /es/124-comprar-tarjeta-sd-32gb-clase-10-transcend/ http://tienda.comohacer.eu/es/123-tarjeta-sd-16gb-clase-10-transcend/
Redirect 301 /es/113-comprar-kit-de-inicio-raspberry-pi-b-plus/ http://tienda.comohacer.eu/es/135-kit-inicio-raspberry-pi-2-model-b-1gb/
Redirect 301 /es/115-comprar-kit-raspberry-pi-model-b-plus-512mb-tarjeta-sd-8gb-clase-4/ http://tienda.comohacer.eu/es/10-raspberry-pi
Redirect 301 /es/116-comprar-kit-raspberry-pi-model-b-plus-512mb-tarjeta-sd-8gb-clase-6/ http://tienda.comohacer.eu/es/10-raspberry-pi
Redirect 301 /es/120-comprar-kit-raspberry-pi-b-plus-con-caja-oficial-transparente/ http://tienda.comohacer.eu/es/10-raspberry-pi
Redirect 301 /es/112-comprar-raspberry-pi-model-b-plus/ http://tienda.comohacer.eu/es/134-raspberry-pi-2-model-b-1gb/
Redirect 301 /es/31-comprar-kit-para-reparar-xbox-360/ http://tienda.comohacer.eu/
Redirect 301 /es/13-comprar-triple-cable-rca-1-5m-con-adaptador-a-jack/ http://tienda.comohacer.eu/es/19-cableado-raspberry-pi
Redirect 301 /es/11-reparaciones http://tienda.comohacer.eu/
Redirect 301 /es/100-comprar-caja-oficial-para-raspberry-pi-color-negro-muy-resistente/ http://tienda.comohacer.eu/es/127-caja-oficial-para-raspberry-pi-b-plus-negra-muy-resistente/
Redirect 301 /es/119-comprar-caja-oficial-para-raspberry-pi-b-plus-transparente-muy-resistente/ http://tienda.comohacer.eu/es/119-caja-raspberry-pi-transparente/
Redirect 301 /es/127-comprar-caja-oficial-para-raspberry-pi-b-plus-negra-muy-resistente/ http://tienda.comohacer.eu/es/127-caja-raspberry-pi-negra/
Redirect 301 /es/130-comprar-caja-oficial-para-raspberry-pi-b-plus-blanca-muy-resistente/ http://tienda.comohacer.eu/es/130-caja-raspberry-pi-blanca/
Redirect 301 /es/23-kits-base http://tienda.comohacer.eu/es/18-kits-raspberry-pi
Redirect 301 /es/21-adaptador-de-usb-ps2-para-teclado-y-raton/ http://tienda.comohacer.eu/
Redirect 301 /es/27-caja-transparente-para-raspberry-pi/ http://tienda.comohacer.eu/
Redirect 301 /es/22-tarjeta-sd-de-8gb-clase-6-de-samsung/ http://tienda.comohacer.eu/es/123-tarjeta-sd-16gb-clase-10-transcend/
Redirect 301 /es/138-mega-kit-media-center-raspberry-pi-2-kodi/ http://tienda.comohacer.eu/es/144-mega-kit-media-center-raspberry-pi-3-kodi-openelec-addons/
Redirect 301 /es/137-kit-consola-retro-raspberry-pi-2/ http://tienda.comohacer.eu/es/145-kit-consola-retro-raspberry-pi-3/
Redirect 301 /es/107-kit-media-center-raspberry-pi-xbmc-en-openelec/ http://tienda.comohacer.eu/es/142-media-center-raspberry-pi-3-kodi-openelec/
Redirect 301 /es/135-kit-inicio-raspberry-pi-2-model-b-1gb/ http://tienda.comohacer.eu/es/143-kit-inicio-raspberry-pi-3/
Redirect 301 /es/134-raspberry-pi-2-model-b-1gb/ http://tienda.comohacer.eu/es/140-raspberry-pi-3-model-b/
# PRO 2
Redirect 301 /es/40-kit-regulador-de-carga-mixto-panel-solar-aerogenerador/ http://tienda.comohacer.eu/13-kit-regulador-de-carga-mixto-panel-solar-aerogenerador/
Redirect 301 /es/140-raspberry-pi-3-model-b/ http://tienda.comohacer.eu/14-raspberry-pi-3-model-b/
Redirect 301 /es/38-kit-antena-wifi-direccional-de-alta-ganancia-conector-sma/ http://tienda.comohacer.eu/15-kit-antena-wifi-direccional-de-alta-ganancia-conector-sma/
Redirect 301 /es/150-pla-madera-impresoras-3d/ http://tienda.comohacer.eu/16-bobina-de-pla-madera-para-impresoras-3d-175mm-600gr/
Redirect 301 /es/36-kit-detector-de-metales-casero-2/ http://tienda.comohacer.eu/17-kit-detector-de-metales-casero/
Redirect 301 /es/35-mini-antena-tdt-usb/ http://tienda.comohacer.eu/18-mini-antena-tdt-usb-para-raspberry-pi/
Redirect 301 /es/147-filaflex-impresora-3d/ http://tienda.comohacer.eu/19-bobina-de-filaflex-para-impresoras-3d-175mm-500gr/
Redirect 301 /es/151-lightberry-hd/ http://tienda.comohacer.eu/20-lightberry-hd/
Redirect 301 /es/32-arduino-uno-rev3/ http://tienda.comohacer.eu/21-arduino-uno-rev3-compatible/
Redirect 301 /es/149-pla-metalico-impresoras-3d/ http://tienda.comohacer.eu/22-bobina-de-pla-metalico-para-impresoras-3d-175mm-750gr/
Redirect 301 /es/152-lector-tarjetas-microsd-por-usb/ http://tienda.comohacer.eu/23-lector-tarjetas-microsd-por-usb/
Redirect 301 /es/30-tarjeta-sd-de-8gb-clase-4-oficial-de-raspberry-pi-tarjeta-micro-sd-adaptador/ http://tienda.comohacer.eu/24-tarjeta-sd-de-8gb-clase-4-de-raspberry-pi/
Redirect 301 /es/29-pasta-termica-para-microprocesadores-1gr/ http://tienda.comohacer.eu/25-pasta-termica-para-microprocesadores-1gr/
Redirect 301 /es/28-kit-robot-de-inicio-motores-controlador-y-plataforma/ http://tienda.comohacer.eu/26-kit-robot-de-inicio-motores-controlador-y-plataforma/
Redirect 301 /es/153-super-nintendo-classic-mini/ http://tienda.comohacer.eu/55-super-nintendo-classic-mini/
Redirect 301 /es/26-hub-usb-de-7-puertos-con-fuente-de-alimentacion-externa/ http://tienda.comohacer.eu/27-hub-usb-20-de-7-puertos/
Redirect 301 /es/25-pack-x3-disipadores-para-raspberry-pi/ http://tienda.comohacer.eu/28-pack-disipadores-para-raspberry-pi/
Redirect 301 /es/142-media-center-raspberry-pi-3-kodi-openelec/ http://tienda.comohacer.eu/29-kit-media-center-raspberry-pi-3-kodi-en-libreelec/
Redirect 301 /es/23-wifi-nano-150mbps-usb-2-0-802-11nbg/ http://tienda.comohacer.eu/30-wifi-nano-150mbps-usb-20-80211nbg/
Redirect 301 /es/154-mando-super-nintendo-por-usb/ http://tienda.comohacer.eu/63-mando-super-nintendo-usb/
Redirect 301 /es/19-camara-oficial-para-raspberry-pi-5mpx-full-hd-1080p/ http://tienda.comohacer.eu/31-camara-para-raspberry-pi-5mpx-full-hd-1080p/
Redirect 301 /es/17-caja-oficial-para-raspberry-pi-transparente-muy-resistente/ http://tienda.comohacer.eu/9-caja-oficial-para-raspberry-pi-model-a-y-b-transparente-muy-resistente/
Redirect 301 /es/143-kit-inicio-raspberry-pi-3/ http://tienda.comohacer.eu/32-kit-de-inicio-raspberry-pi-3-model-b/
Redirect 301 /es/15-kit-panel-solar-65w-36-celulas-regulador-de-carga/ http://tienda.comohacer.eu/33-kit-panel-solar-65w-36-celulas-regulador-de-carga/
Redirect 301 /es/8-teclado-rii-i8-inalambrico-con-raton-touchpad/ http://tienda.comohacer.eu/34-teclado-inalambrico-con-raton-touchpad/
Redirect 301 /es/14-adaptador-hdmi-vga-con-cable-jack-externo/ http://tienda.comohacer.eu/35-adaptador-hdmi-a-vga/
Redirect 301 /es/88-cable-hdmi-v14-15m-1080p3d/ http://tienda.comohacer.eu/36-cable-hdmi-v14-1m-1080p3d/
Redirect 301 /es/144-mega-kit-media-center-raspberry-pi-3-kodi-openelec-addons/ http://tienda.comohacer.eu/37-mega-kit-media-center-raspberry-pi-3-kodi-en-libreelec-addons-configurados/
Redirect 301 /es/145-kit-consola-retro-raspberry-pi-3/ http://tienda.comohacer.eu/55-super-nintendo-classic-mini/
Redirect 301 /es/146-cables-dupont-20cm-10hh-10mm-y-10hm/ http://tienda.comohacer.eu/39-cables-dupont-20cm-10hh-10mm-y-10hm/
Redirect 301 /es/10-cable-de-red-cruzado-categoria-5e/ http://tienda.comohacer.eu/40-cable-de-red-categoria-5e/
Redirect 301 /es/141-fuente-alimentacion-3a-raspberry-pi/ http://tienda.comohacer.eu/41-fuente-de-alimentacion-3a-para-raspberry-pi/
Redirect 301 /es/93-controlador-de-motores-dual-08a-25-12v/ http://tienda.comohacer.eu/42-controlador-de-motores-dual-08a-25-12v/
Redirect 301 /es/102-caja-oficial-para-raspberry-pi-color-blanco-muy-resistente/ http://tienda.comohacer.eu/10-caja-oficial-para-raspberry-pi-model-a-y-b-color-blanco-muy-resistente/
Redirect 301 /es/104-ventilador-para-raspberry-pi/ http://tienda.comohacer.eu/43-ventilador-para-raspberry-pi/
Redirect 301 /es/103-kit-refrigeracion-para-raspberry-pi/ http://tienda.comohacer.eu/44-kit-refrigeracion-para-raspberry-pi/
Redirect 301 /es/109-tarjeta-sd-de-32gb-clase-10-de-kingston/ http://tienda.comohacer.eu/12-tarjeta-sd-de-32gb-clase-10-de-kingston-model-a-y-b/
Redirect 301 /es/114-caja-barata-para-raspberry-pi-b-plus/ http://tienda.comohacer.eu/45-caja-barata-para-raspberry-pi-model-b-y-2b/
Redirect 301 /es/117-montaje-en-caja-del-kit-refrigeracion/ http://tienda.comohacer.eu/46-montaje-en-caja-del-kit-refrigeracion/
Redirect 301 /es/118-impresora-3d-bq-witbox-negra-blanca-y-amarilla/ http://tienda.comohacer.eu/47-impresora-3d-witbox-negra-y-amarilla/
Redirect 301 /es/119-caja-raspberry-pi-transparente/ http://tienda.comohacer.eu/48-caja-para-raspberry-pi-model-b-y-2b-transparente-muy-resistente/
Redirect 301 /es/123-tarjeta-sd-16gb-clase-10-transcend/ http://tienda.comohacer.eu/49-tarjeta-usd-de-16gb-clase-10/
Redirect 301 /es/124-tarjeta-sd-32gb-clase-10/ http://tienda.comohacer.eu/50-tarjeta-usd-de-32gb-clase-10/
Redirect 301 /es/125-impresora-3d-prusa-i3-hephestos-azul-roja-y-amarilla/ http://tienda.comohacer.eu/51-impresora-3d-prusa-i3-hephestos/
Redirect 301 /es/126-bobina-pla-impresoras-3d-175mm-1kg/ http://tienda.comohacer.eu/52-bobina-de-pla-para-impresoras-3d-175mm-1kg/
Redirect 301 /es/127-caja-raspberry-pi-negra/ http://tienda.comohacer.eu/53-caja-negra-para-raspberry-pi/
Redirect 301 /es/128-addons-extra-media-center/ http://tienda.comohacer.eu/54-servicio-de-instalacion-de-addons-media-center-kodi/
Redirect 301 /es/130-caja-raspberry-pi-blanca/ http://tienda.comohacer.eu/56-caja-blanca-para-raspberry-pi/
Redirect 301 /es/129-camara-ip-foscam-fi8909w-interior-fija-barata/ http://tienda.comohacer.eu/57-camara-ip-foscam-fi8909w-interior-fija/
Redirect 301 /es/131-raspberry-pi-model-a-plus-256mb/ http://tienda.comohacer.eu/58-raspberry-pi-model-a-a-plus-256mb/
Redirect 301 /es/132-cable-hdmi-v14-05m-1080p3d/ http://tienda.comohacer.eu/59-cable-hdmi-v14-05m-1080p3d/
Redirect 301 /es/133-adaptador-mcx-antena-tdt-usb/ http://tienda.comohacer.eu/60-adaptador-mcx-para-antena-tdt-usb/
Redirect 301 /es/136-tarjeta-sd-raspberry-pi-64gb-clase-10/ http://tienda.comohacer.eu/61-tarjeta-usd-de-64gb-clase-10/
Edited by Alberto Navarro (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...