使用htaccess将带有Symbol的旧链接重定向到新URL

时间:2016-06-29 17:41:47

标签: .htaccess redirect

您好我在网站站长工具上发现了很多未找到的错误,因此我尝试将其重定向为

Redirect 301 /cars/2004@$Toyota@$Alessandro%20Volta%20Conceptg.html http://www.example.net/blog/

但是我看到我所有的重定向都是woking但所有带有@%$等符号的链接都不起作用,有人可以帮我解决一下我需要使用哪种规则进行此类链接吗?

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteEngine on


RewriteCond %{THE_REQUEST} /cars/2004@\$Toyota@\$Alessandro%20Volta%20Conceptg.html [NC]
RewriteRule ^ http://www.example.net/blog/ [R,L]