1

我想使用 .htaccess [R=301] 重定向页面 url

原始网址:http ://www.encros.fr/la-boutique-encros/recharge-toner

重定向网址:http ://www.encros.fr/recharge-toner

有人可以帮助我吗?

4

2 回答 2

4

您的 .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

关于重写标志:http ://httpd.apache.org/docs/2.4/rewrite/flags.html

于 2013-03-28T11:29:26.427 回答
0

试试这个

Options +FollowSymLinks
RewriteEngine on
RewriteRule ^recharge-toner$ /la-boutique-encros/recharge-toner [L]
于 2013-03-28T10:58:46.840 回答