I have shop on PrestaShop with Multistore function. I want add "noindex, nofollow" to one of my stores. I have main shop: eg. www.shop.com and second shop eg. www.shop.com/shop2. I want add "noindex, nofollow" only to "shop2".
Thanks for help!
I have shop on PrestaShop with Multistore function. I want add "noindex, nofollow" to one of my stores. I have main shop: eg. www.shop.com and second shop eg. www.shop.com/shop2. I want add "noindex, nofollow" only to "shop2".
Thanks for help!
This code work's fine!
{if strstr($smarty.server.REQUEST_URI, 'hurt') !== false} <meta name="robots" content="noindex,nofollow"> {else} <meta name="robots" content="index,follow"> {/if}