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


i trying redirect not created page created page in wordpress through .htaccess it's not redirecting.i using code @ top of wordpress .htaccess file:

rewriterule http://www.myweb.com/fs http://www.myweb.com/services/first-service/ [l,r=301] 

you should not match entire url instead path:

rewritebase / rewriterule ^fs$ /services/first-service/ [l,r=301] 

Comments

Popular posts from this blog

php - Extract Text from HTTP referer -

Receive udp packets in android gstreamer -

authentication - ASP.NET Core 1.0. Bearer Token, cannot access custom claims -