Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,是否有这样的东西.htaccess:
.htaccess
RewriteRule ^([A-Za-z0-9]+)$ <<do md5 on $1>>.mp3
是否可以?
据我发现这是不可能的,但是可以在 Apache 中加载模块——一旦你创建了这样的模块,可以在现有的模块中引入 MD5,mod_rewrite你可以这样做。 但我必须警告你,你会减慢你的服务器。改用 PHP。
mod_rewrite
if(isset($_GET["file"])) { readfile(md5($_GET["file"]).".mp3"); //Outputs the file. Do not use echo file_get_contents. }