Magento 1.9 Import – Fixing URL Key Not Generating During Product Import

importmagento-1.9url-key

I am importing products through a CSV file from admin.
I have checked the CSV file, it contains _product_websites column with value "base".

But still URL keys are not generating after import.
Please help.

Best Answer

After running the import you need to re-index the Catalog URL Rewrites index. This will generate URL's for your products.

You can do so through the admin panel:

Admin Panel -> System -> Index Management -> Next to Catalog URL Rewrites Click Reindex Data

You can also reindex through a SSH session using the indexer.php file located in /magento_root/shell

php indexer.php --reindex catalog_url

Related Topic