Search code examples
.htaccessmod-rewritehttp-redirectsef

redirect url using .htaccess [R=301,L]


i want to redirect page url using .htaccess [R=301]

original url : http://www.encros.fr/la-boutique-encros/recharge-toner

redirect url : http://www.encros.fr/recharge-toner

anybody can help me ?


Solution

  • Try this

    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule ^recharge-toner$ /la-boutique-encros/recharge-toner [L]