htaccess 301 redirect folder, but not subfolders

后端 未结 6 2082
余生分开走
余生分开走 2020-12-10 11:13

I need to redirect from:

http://example.com/folder

to http://example.com/newfolder

But leave:

http://example.com/folder/subfolder

Whe

6条回答
  •  一整个雨季
    2020-12-10 12:06

    I've tried other methods here with mixed success. I am no Apache expert by any means, but here is the simple one-liner that works every time for me. I just use RedirectMatch instead of Redirect and include a very simple RegEx to end the match at or just before the trailing slash, meaning that subdirectories should never qualify as a match.

    RedirectMatch 301 ^/folder[/]?$ /newfolder

提交回复
热议问题