Promalia Posted December 19, 2013 Share Posted December 19, 2013 Hola, he visto este tema abierto en varios sitios, pero ninguno con la solución que necesito. Tengo una tienda en www.gomarizstore.com/tienda pero cuando activo las URL amigables se me van las imagenes, he hecho todo lo que pone en otros hilos, pero nada, Borrar y actualizar el httacces, restaurar las miniaturas, meter un archivo que he visto que se supone lo arreglaba y no se cuantas mas... alguien em puede ayudar?? es una urgencia... Link to comment Share on other sites More sharing options...
nadie Posted December 19, 2013 Share Posted December 19, 2013 Activa las urls amigables y pegame el contenido de tu .htaccess Link to comment Share on other sites More sharing options...
Promalia Posted December 21, 2013 Author Share Posted December 21, 2013 # ~~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> RewriteEngine on RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule . - [E=REWRITEBASE:/tienda/] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Blog RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([a-z/]*)blog/all-post.html$ %{ENV:REWRITEBASE}modules/plblog/frontent/all-post.php?simpleurl [QSA,L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([a-z/]*)blog/([a-zA-Z0-9-]*)/([0-9]*)-([a-zA-Z0-9-]*).html$ %{ENV:REWRITEBASE}modules/plblog/frontent/details.php?simpleurl&plcn=$2&plidp=$3&plpn=$4&.php [QSA,L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([a-z/]*)blog/([0-9]*)_([a-zA-Z0-9-]*).html$ %{ENV:REWRITEBASE}modules/plblog/frontent/list-post.php?simpleurl&plidc=$2&plcn=$3&.php [QSA,L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([a-z/]*)blog/tag/([a-zA-Z-1-9-]*)_([0-9]*).html$ %{ENV:REWRITEBASE}modules/plblog/frontent/list-tags.php?simpleurl&pltn=$2&plidt=$3&.php [QSA,L] # Images RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$1$2$3$4.jpg [L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$3/$1$2$3$4$5.jpg [L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ 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}/tienda/img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] # AlphaImageLoader for IE and fancybox RewriteCond %{HTTP_HOST} ^gomarizstore.com$ 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 RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^gomarizstore.com$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] RewriteCond %{HTTP_HOST} ^$ RewriteRule . - [E=REWRITEBASE:/tienda/] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Blog RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([a-z/]*)blog/all-post.html$ %{ENV:REWRITEBASE}modules/plblog/frontent/all-post.php?simpleurl [QSA,L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([a-z/]*)blog/([a-zA-Z0-9-]*)/([0-9]*)-([a-zA-Z0-9-]*).html$ %{ENV:REWRITEBASE}modules/plblog/frontent/details.php?simpleurl&plcn=$2&plidp=$3&plpn=$4&.php [QSA,L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([a-z/]*)blog/([0-9]*)_([a-zA-Z0-9-]*).html$ %{ENV:REWRITEBASE}modules/plblog/frontent/list-post.php?simpleurl&plidc=$2&plcn=$3&.php [QSA,L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([a-z/]*)blog/tag/([a-zA-Z-1-9-]*)_([0-9]*).html$ %{ENV:REWRITEBASE}modules/plblog/frontent/list-tags.php?simpleurl&pltn=$2&plidt=$3&.php [QSA,L] # Images RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$1$2$3$4.jpg [L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$3/$1$2$3$4$5.jpg [L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}/tienda/img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L] RewriteCond %{HTTP_HOST} ^$ 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}/tienda/img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] # AlphaImageLoader for IE and fancybox RewriteCond %{HTTP_HOST} ^$ 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 RewriteCond %{HTTP_HOST} ^$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] </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" </IfModule> FileETag INode MTime Size <IfModule mod_deflate.c> <IfModule mod_filter.c> AddOutputFilterByType DEFLATE text/html text/css text/javascript application/javascript application/x-javascript </IfModule> </IfModule> #If rewrite mod isn't enabled ErrorDocument 404 /tienda/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 Link to comment Share on other sites More sharing options...
Feliz Garcia Posted December 21, 2013 Share Posted December 21, 2013 Hola, Me cuelo por aqui. ¿Lo unico que no se te ven son las imagenes cuando tienes las urls amigables activadas, o no funciona las urls amigables en general? ¿Tienes correctamente configurado mod_rewrite en su hosting? ¿Ha probado contactar con su alojamiento comentadoles el problema? Link to comment Share on other sites More sharing options...
Promalia Posted December 21, 2013 Author Share Posted December 21, 2013 Las url funcionan, lo que son categorias y se habren los productos, lo unico que no se ven las imegens de los productos, las imagenes dels categorias si se ven. no lo entiendo Link to comment Share on other sites More sharing options...
Feliz Garcia Posted December 21, 2013 Share Posted December 21, 2013 Las url funcionan, lo que son categorias y se habren los productos, lo unico que no se ven las imegens de los productos, las imagenes dels categorias si se ven. no lo entiendo Activa las urls amigables en la tienda, para ver el problema en directo. Link to comment Share on other sites More sharing options...
Promalia Posted December 21, 2013 Author Share Posted December 21, 2013 Ya estan activadas. http://gomarizstore.com/tienda/ Link to comment Share on other sites More sharing options...
Feliz Garcia Posted December 21, 2013 Share Posted December 21, 2013 ¿Con la plantilla por defecto se ven? Link to comment Share on other sites More sharing options...
Promalia Posted December 21, 2013 Author Share Posted December 21, 2013 No lo he probado con la plantilla pordefecto Link to comment Share on other sites More sharing options...
Feliz Garcia Posted December 21, 2013 Share Posted December 21, 2013 No lo he probado con la plantilla pordefecto Prueba a ver... Link to comment Share on other sites More sharing options...
Promalia Posted December 21, 2013 Author Share Posted December 21, 2013 Esta tienda no tiene la plantilla por defecto, me vino asi con el instalador de leotheme Link to comment Share on other sites More sharing options...
Recommended Posts