.htaccess重定向动态URL

时间:2014-12-03 06:16:48

标签: .htaccess redirect

旧网址:1。http://www.example.com/hotel-list/something

新网址:2。http://www.example.com/something/hotel-list

&# 34;酒店列表"实际上是hotel-list.php

Google搜索中的旧网址正在提供404.我们如何才能正确重定向?

提前多多感谢。

1 个答案:

答案 0 :(得分:0)

尝试:

RedirectMatch 301 ^/hotel-list/(.*)$ /$1/hotel-list

RewriteRule ^hotel-list/(.*)$ /$1/hotel-list [L,R=301]
相关问题