How to redirect not created page to the created page in wordpress through .htaccess?

I am trying to redirect not created page to the created page in wordpress through .htaccess but it’s not redirecting.I am using this code at the top of wordpress .htaccess file:

RewriteRule http://www.myweb.com/fs http://www.myweb.com/services/first-service/ [L,R=301]

Related posts

1 comment

  1. You should not match the entire URL but instead the path:

    RewriteBase /
    RewriteRule ^fs$ /services/first-service/ [L,R=301]
    

Comments are closed.