坚持写.htaccess重定向

时间:2015-08-25 20:54:07

标签: .htaccess redirect

我需要一些帮助,为以下场景编写.htaccess文件:

用户输入此地址:http://subdomain.domain.com/name,应重定向到http://subdomain.domain.com/#/name

非常感谢。

1 个答案:

答案 0 :(得分:0)

RedirectMatch ^/name$ /#/name

或者如果你的意思是“名字”可以是任何东西:

RedirectMatch ^/(.+)$ /#/$1