ywan Posted February 17, 2011 Share Posted February 17, 2011 Bonjour à tous J'ai besoin d'un peu d'aide car je ne connais pas grand chose au HTACCESS.Mon url actuelle pour mes produits est : http://www.monsite.fr/ID-maCatégorie/ID-Monproduit-.htmlComment faire pour que, sur ma page produit, mon url ne fasse plus apparaitre le nom de ma catégorie, ce qui donnerai http://www.monsite.fr/ID-Monproduit-.html ?Ci-dessous mon htaccess : # .htaccess automaticaly generated by PrestaShop e-commerce open-source solution # http://www.prestashop.fr - http://www.prestashop.fr/forums # URL rewriting module activation RewriteEngine on # URL rewriting rules RewriteRule ^([a-z0-9]+)\-([a-z0-9]+)(\-[_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*)\.jpg$ /img/p/$1-$2$3.jpg [L,E] RewriteRule ^([0-9]+)\-([0-9]+)/([_a-zA-Z0-9-]*)\.jpg$ /img/p/$1-$2.jpg [L,E] RewriteRule ^([0-9]+)(\-[_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*)\.jpg$ /img/c/$1$2.jpg [L,E] RewriteRule ^lang-([a-z]{2})/([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ /product.php?id_product=$3&isolang;=$1$5 [L,E] RewriteRule ^lang-([a-z]{2})/([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ /product.php?id_product=$2&isolang;=$1$4 [L,E] RewriteRule ^lang-([a-z]{2})/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ /category.php?id_category=$2&isolang;=$1 [QSA,L,E] RewriteRule ^([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ /product.php?id_product=$2$4 [L,E] RewriteRule ^([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ /product.php?id_product=$1$3 [L,E] RewriteRule ^([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ /category.php?id_category=$1 [QSA,L,E] RewriteRule ^content/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ /cms.php?id_cms=$1 [QSA,L,E] RewriteRule ^([0-9]+)__([a-zA-Z0-9-]*)(.*)$ /supplier.php?id_supplier=$1$3 [QSA,L,E] RewriteRule ^([0-9]+)_([a-zA-Z0-9-]*)(.*)$ /manufacturer.php?id_manufacturer=$1$3 [QSA,L,E] RewriteRule ^lang-([a-z]{2})/(.*)$ /$2?isolang=$1 [QSA,L,E] # Catch 404 errors ErrorDocument 404 /404.php Merci à tous pour votre aide Link to comment Share on other sites More sharing options...
Prof719 Posted February 17, 2011 Share Posted February 17, 2011 Bonsoir,dans la 1.2.5 (ça doit toujours fonctionner comme ça dans les versions d'après), sur la fiche produit en backoffice, il y a une une boite "Catégorie par défaut". Choisissez "accueil" et cela devrait donner l'url que vous souhaitez. Il ne faut pas toucher au htaccess. Link to comment Share on other sites More sharing options...
ywan Posted February 18, 2011 Author Share Posted February 18, 2011 Excellent, ça fonctionne !! Merci beaucoup, je me suis toujours demandé à quoi cette barre servait.... ben voila Link to comment Share on other sites More sharing options...
Recommended Posts