如果使用htacess在网址中输入一个单词,则重定向到其他网址

时间:2018-05-28 12:33:33

标签: .htaccess redirect

嗨我需要创建一个软301重定向如果" / myproject /" 进入我的网址我必须添加" blog / myproject /" 并重定向到该网址

examlpe.com/myprojects/test.html => examlpe.com/blog/myprojects/test.html
examlpe.com/myprojects/myvilla.html => examlpe.com/blog/myprojects/myvilla.html
examlpe.com/myprojects/car.html => examlpe.com/blog/myprojects/car.html

有很多网址都是这样的。

我如何重定向?我不想像这样一个一个地重定向

Redirect 301 /examlpe.com/myprojects/test.html http://examlpe.com/blog/myprojects/test.html

请帮忙

1 个答案:

答案 0 :(得分:1)

您可以使用:

Redirect 301 /myproject/ /blog/

这会将所有请求从/myproject/重定向到/blog/