开发者

How to do this redirect?

开发者 https://www.devze.com 2023-03-28 21:43 出处:网络
I want to 301 redire开发者_StackOverflow中文版ct all the link from http://www.mysite.com/my-color/whatever/

I want to 301 redire开发者_StackOverflow中文版ct all the link from

http://www.mysite.com/my-color/whatever/

to

http://www.mysite.com/my-color/

htaccess:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.mysite\.com$
RewriteRule ^my\-color\/\/?(.*)$ "http\:\/\/www\.mysite\.com\/my\-color\/$1" [R=301,L]

This throws me in a loop ad can't seem to figure it out... Do you have any pointers ? Thank you! :)


Try changing your (.*) to (.+). That way it won't match the empty string.

0

精彩评论

暂无评论...
验证码 换一张
取 消