我将文件移动到另一台服务器,因此我需要将用户重定向到另一个页面,当他点击"旧的直接下载链接"。
例如,当用户点击:
时 http://example-1.com/file.zip
他必须重定向到:
http://example-2.com/old_file.zip
答案 0 :(得分:1)
您可以在.htaccess
root:
http://example-1.com/
RewriteEngine on
RewriteRule ^(.+\.zip)$ http://example-2.com/old_$1 [R=301,L]