我想将不再存在的整个文件夹重定向到主页。
我试试:
RedirectMatch 301 ^/folder_thats_no_longer_exists/$ /
RedirectMatch 301 ^/folder_thats_no_longer_exists /
RedirectMatch 301 /folder_thats_no_longer_exists /
但是这个解决方案不起作用:
事实上,在尝试此操作后,网址仍然是:http://www.example.com/folder_thats_no_longer_exists/page.htm但是主页的内容(导致显示错误)。
我只想要: 使用301重定向转到http://www.example.com/folder_thats_no_longer_exists/page.htm的http://www.example.com/。
谢谢!
答案 0 :(得分:0)
您可以在网站根目录.htaccess:
的顶部使用此规则RedirectMatch 301 ^/folder_thats_no_longer_exists(/.*)?$ /
在测试此更改之前,请务必完全清除浏览器缓存。