我完全不理解htaccess
,所以我需要帮助解决这个问题。我需要将用户从目录www.example.com/es
和www.example.com/en
重定向到子目录www.example.com/old/es
和www.example.com/old/en
。
答案 0 :(得分:1)
在文档根目录中的htaccess文件中添加:
RedirectMatch 301 ^/(en|es)(/.*)?$ /old/$1$2
如果您只想重定向/en
和/es
,而不是/en/foo
或/es/something/else
,请从结尾删除$2
位。