PHP重定向 - .txt文件中的URL的一部分

时间:2015-03-02 21:20:43

标签: php redirect http-headers

我有两个文件:version.txt和index.php。

在version.txt中,有一个包含最新文件版本的编号(例如030),我想让PHP文件重定向到地址

xxx.xxx/xxx/"VERSION".zip

即文本" VERSION"应替换为文件version.txt的内容,因此最终目的地为:

xxx.xxx/xxx/030.zip 

我不想使用像MySQL这样的任何数据库。

1 个答案:

答案 0 :(得分:0)

的index.php

<?php
if ($version= file_get_contents('version.txt')) {
    header("Location: http://xxx.xxx/xxx/".$version.".zip");
}
?>