regex - Include name in product image URL with mod_rewrite -
regex - Include name in product image URL with mod_rewrite -
i have image urls this:
/p/sh-9001.jpg
but want include product name in url seo want /p/sh-9001---some-product-name.jpg point /p/sh-9001.jpg
the rewrite should ignore "---" , after , add together ".jpg"
what the rewrite this?
put code in document_root/.htaccess file:
rewriteengine on rewriterule ^(p/.+?)--.+$ /$1.jpg [l,nc] regex apache .htaccess mod-rewrite imageurl
Comments
Post a Comment