How to set redirect URL programmatically in magento 2?

In Magento 2, You can set redirect to any link URL by the Magento\Framework\Controller\Result\RedirectFactory Class.

How to get Product URL from product object Magento 2?

Magento 2, You can get Product URL from Product object. You can be assigned Product URL to any page in store for a redirect to Product page.

I hope you have Product Object, Get Product Object by SKU

If you want to get Only Url Key value, You can access by $product->getUrlKey() method.

You can product full URL by getProductUrl() method.

<?php 
$sku = '24-MB01';
$_product = $this->productRepository->get($sku);?>
<?php echo $_product->getProductUrl(); ?>

 

How to get Base Url and Current Url Magento 2?

In Magento 2, You can get Base Url, Current Url, get Media URL, get static page URL and custom URL using Magento\Store\Model\StoreManagerInterface and Magento\Framework\UrlInterface Object.

Using StoreManager Object,
Create PHP file and Passed Dependency injection Magento\Store\Model\StoreManagerInterface, Continue reading “How to get Base Url and Current Url Magento 2?”