将子文件夹,内容和文件重定向到特定的URL链接

时间:2014-10-09 20:02:08

标签: apache .htaccess mod-rewrite

我正在尝试将文件夹,内容和文件重定向到特定网址链接

例如

我想重定向

http://www.example.com/folder1/
http://www.example.com/folder1/anyfolder
http://www.example.com/folder1/anyfile.anyextension

http://www.example.com/folder2/file.html

1 个答案:

答案 0 :(得分:1)

您可以在DocumentRoot/.htaccess

中使用此规则
RewriteEngine On

RewriteRule ^folder1/ /folder2/anyfile.anyextension [L,NC,R=302]