If you develop for Magento 2, you might have run into Catalog URL indexing issues like duplicated urls and constraints.
There are many posts and answers about it on the net. After trying many free modules, this was the good one:
https://github.com/karliuka/m2.IndexerUrlRewrite
- It adds Product, Category and Catalog reindex to indexes
- When reindexing from terminal you’ll see that it reindex these three models
You can also reindex separately:
php bin/magento indexer:reindex category_url_rewrite
php bin/magento indexer:reindex product_url_rewrite
php bin/magento indexer:reindex cms_page_url_rewrite
This just saved my day 🙂
0 Comments