.htaccess redirect all files in one folder to exact same in another folder

前端 未结 2 1183
天涯浪人
天涯浪人 2021-01-15 07:01

We simply have to move every page inside of a directory called \"Music\" to a directory called \"Information\"... That\'s the only change. There\'s lots of links to pages mu

相关标签:
2条回答
  • 2021-01-15 07:10

    Use backreferences for this one:

    RewriteRule ^foo/(.*)$ bar/$1
    
    0 讨论(0)
  • 2021-01-15 07:32

    RedirectMatch ^/foo/bar/(.*) http://www.wherever.org/a/foo/bar/$1

    0 讨论(0)
提交回复
热议问题