强制重定向到旧的URL查询字符串

时间:2017-09-08 13:01:20

标签: .htaccess redirect url-redirection

旧网址 - > http://example.com/hotel/fortunep-park-grand/25

通过htaccess重定向新网址 -

新网址http://example.com/property/fortunep-park-grand/25

2 个答案:

答案 0 :(得分:0)

您只需撰写重定向[old_url] [new_url]

RedirectMatch "^/hotel/(.*)" "http://example.com/property/$1"

答案 1 :(得分:0)

尝试:

RedirectMatch 301 ^/property/(.+)$ http://example.com/hotel/$1

这将301重定向更改浏览器网址:

example.com/property/path

example.com/hotel/path