我需要一些帮助。我怎么能做这个东西,使用htaccess下载。 我想这样。
当前网址:
https://example.com/comp/test1.zip
是
https://example.com/comp/Archive.zip
其中Archive.zip是静态值
答案 0 :(得分:1)
您需要将 /comp/Archive.zip 重写为 /comp/test1.zip 。
在/root/.htaccss
中试试RewriteEngine on
RewriteRule ^comp/Archive\.zip$ /comp/test1.zip [L,NC]