Home > Back-end >  301 Redirection from /%year%/%monthnum%/%postname%.html to /%postname%/
301 Redirection from /%year%/%monthnum%/%postname%.html to /%postname%/

Time:07-31

I want to change the permalinks from /%year%/%monthnum%/%postname%.html to /%postname%/ on WordPress.

I've got hundreds of posts so I want to know please if there is any chance to make a redirection from .htacess for old my posts with /%year%/%monthnum%/%postname%.html to /%postname%/.

CodePudding user response:

You can change the way all your permalinks looks just by navigating the

/wp-admin >> Settings >> Permalinks

enter image description here

When you done done forget to save it.

Extra note: Changing your permalinks will hurt your SEO.

CodePudding user response:

I did the redirection using the Yoast permalink helper tool. Worked well! https://yoast.com/research/permalink-helper.php I added the following to my htaccess file.

RedirectMatch 301 ^/([0-9]{4})/([0-9]{2})/([^/] ).html$ https://yourdomain.com/$3
  • Related