标签: .htaccess redirect
我需要一些帮助,为以下场景编写.htaccess文件:
用户输入此地址:http://subdomain.domain.com/name,应重定向到http://subdomain.domain.com/#/name
http://subdomain.domain.com/name
http://subdomain.domain.com/#/name
非常感谢。
答案 0 :(得分:0)
RedirectMatch ^/name$ /#/name
或者如果你的意思是“名字”可以是任何东西:
RedirectMatch ^/(.+)$ /#/$1