I have redirected my blog from blog/my-blog-post to blog/post/my-blog-post and it gives me a 404 error in magento 1.9.
blog/my-blog-post
blog/post/my-blog-post
2
You can do this from htaccessin a simple way. Add below code in htaccess at bottom:
Redirect 301 /blog/my-blog-post to http://www.domainname.com/blog/post/my-blog-post
You can use Magento’s default 301 URL Redirect functionality for that.
https://stuntcoders.com/magento-tutorials/magento-catalog/how-to-create-301-redirect-from-magento-admin-panel/
Click here to cancel reply.
2
Answers
You can do this from htaccessin a simple way. Add below code in htaccess at bottom:
Redirect 301 /blog/my-blog-post to http://www.domainname.com/blog/post/my-blog-post
You can use Magento’s default 301 URL Redirect functionality for that.
https://stuntcoders.com/magento-tutorials/magento-catalog/how-to-create-301-redirect-from-magento-admin-panel/