user3050438
user3050438

Reputation: 1

How do I redirect to same domain, from old blog + old permalink style to new blog + new permalink style

Old URL:

4667-harmonica-chords-and-rhythm.html

New URL:

‎harmonica-chords-and-rhythm-3330.html 

Old Directory

/blog

New Directory:

/category/blog

I tried a dynamic redirect Match, but it did not work. I am a complete noob when it comes to htaccess. Can someone please help.

Upvotes: 0

Views: 48

Answers (1)

anubhava
anubhava

Reputation: 785038

You can use this rule in your DOCUMENT_ROOT/.htaccess file:

RedirectMatch 301 ^/blog/([^-]+)-(.*)$ /category/blog/$2-$1.html 

Upvotes: 1

Related Questions