WordPress rewrite htaccess homepage location

Our WP homepage url is changed. I need a rewrite in htaccess to get it done.
But I do not know how.

exiting homepage url: https://www.mysite.nl/

Read More

new homepage url: https://www.mysite.nl/nl/home/

Anyone of you a solution for me?

Related posts

1 comment

  1. With RedirectMatch, you can redirect “/home” to “/”

    RedirectMatch 301 ^/home/?$ /
    

    Or redirect “/” to “/home”

    RedirectMatch 301 ^/$ /home
    

Comments are closed.