user1990
user1990

Reputation: 1067

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]

Upvotes: 2

Views: 23

Answers (1)

Florian Lemaitre
Florian Lemaitre

Reputation: 5748

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

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

Upvotes: 1

Related Questions