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
Post a Comment