Reputation: 1067
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
Reputation: 5748
You should not match the entire URL but instead the path:
RewriteBase /
RewriteRule ^fs$ /services/first-service/ [L,R=301]
Upvotes: 1