重定向网址的htaccess部分

时间:2017-04-04 09:18:12

标签: .htaccess redirect

我想创建一种通配符来重定向到新的网址。

我替换了应该重定向的特定部分。

包含以下/computers/notebooks-laptops/

的所有网址

应重定向到/computers/laptops/

以下网址

https://www.example.com/computers/notebooks-laptops/product1

应该成为:

https://www.example.com/computers/laptops/product1

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:2)

我假设您在根目录中使用.htaccess,请使用以下规则。

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/computers/notebooks-laptops/(.*)
RewriteRule ^ /computers/laptops/%1 [R=301,L]