旧网址 - > http://example.com/hotel/fortunep-park-grand/25
通过htaccess重定向新网址 -
答案 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