如何在htaccess中将我的/ old / folder重定向到/ newfolder

时间:2019-05-17 07:59:42

标签: javascript php .htaccess

我需要重定向我的网站的URL。实际上,如何在htaccess中将我的/old/folder重定向到/newfolder

RedirectMatch 301 ^//old/folder. https://website.com/newFolder/

我使用了以下代码:

RedirectMatch 301 ^//old/folder https://website.com/newFolder/

显示错误404!

1 个答案:

答案 0 :(得分:0)

这将重定向任何文件。

RedirectMatch 301 ^/old/folder/(.*)$ https://website.com/newFolder/$1