我想将旧网址重定向到新网址,但我的网址有"%20"在像这样的角色之间
http://www.mydomainname.com/davey%20pumps.htm
这是旧网址,我希望将此网址的301重定向转换为
之类的其他内容答案 0 :(得分:0)
使用双引号uri模式,您可以将带有%20的旧uri重定向到新位置。将以下行添加到.htaccess:
Redirect 301 "/foo%20bar" http://example.com/new
这会将 / foo%20bar 重定向到 http://example.com/new 。