Reputation: 83
I searched for a solution of my issue and tried several ways but none of them worked.
I am migrating my website to a new system and want to change the url structure too. But I couldnt find a solution for one of them which is the most important one.
It is an e-commerce site. All product page urls had domain.com/product/productname/ in the previous system and now I need them to go to domain.com/productname.html . So the product part should be catched and redirected to the version without product/ .
Might be very simple too but I couldnt find a solution for that.
Thanks in advance
Cheers
Upvotes: 1
Views: 40
Reputation: 785186
You can use this simple rule in your site root .htaccess:
RedirectMatch 301 ^/product/([^./]+)/?$ /$1.html
Upvotes: 1