我正在尝试将文件夹,内容和文件重定向到特定网址链接
例如
我想重定向
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
答案 0 :(得分:1)
您可以在DocumentRoot/.htaccess
:
RewriteEngine On
RewriteRule ^folder1/ /folder2/anyfile.anyextension [L,NC,R=302]