我想使用 .htaccess [R=301] 重定向页面 url
原始网址:http ://www.encros.fr/la-boutique-encros/recharge-toner
重定向网址:http ://www.encros.fr/recharge-toner
有人可以帮助我吗?
我想使用 .htaccess [R=301] 重定向页面 url
原始网址:http ://www.encros.fr/la-boutique-encros/recharge-toner
重定向网址:http ://www.encros.fr/recharge-toner
有人可以帮助我吗?
您的 .htaccess 文件中需要这样的内容:
RewriteEngine on
RewriteRule ^/la-boutique-encros/recharge-toner$ /recharge-toner [R=301,L]
该[R=301]
标志设置返回码。该[L]
标志可防止将其他规则应用于此特定重写。
参考资料:
关于重写:http ://httpd.apache.org/docs/2.4/rewrite/remapping.html
试试这个
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^recharge-toner$ /la-boutique-encros/recharge-toner [L]