HTACCESS:通过浏览器将文件下载为另一个文件名

时间:2017-08-08 09:05:15

标签: .htaccess zip

我需要一些帮助。我怎么能做这个东西,使用htaccess下载。 我想这样。

当前网址:

https://example.com/comp/test1.zip

https://example.com/comp/Archive.zip

其中Archive.zip是静态值

1 个答案:

答案 0 :(得分:1)

您需要将 /comp/Archive.zip 重写为 /comp/test1.zip

在/root/.htaccss

中试试
RewriteEngine on

RewriteRule ^comp/Archive\.zip$ /comp/test1.zip [L,NC]