【发布时间】:2011-04-08 17:02:28
【问题描述】:
example.com/thumb/AWg7X9Ko5hA_default.png
例如它正在工作....
但是
example.com/thumb/m0bt_9Qiznc_default.png
不是..为什么不呢?
当我访问时
example.com/thumb/media.php?id=m0bt_9Qiznc&type=default
它有效。
这是我使用的 htaccess 代码:
RewriteEngine on
RewriteBase /
RewriteRule ^thumb/([^_]*)_([^_]*)\.png$ /thumb/script.php?id=$1&type=$2 [L]
和script.php:
$media_type = $_REQUEST['type'];
$the_id=$_REQUEST['id'];
if ($media_type=="big")
{
header('Content-type: image/png');
readfile("http://i4.ytimg.com/vi/$the_id/0.jpg");
}
elseif ($media_type=="default") {
header('Content-type: image/png');
readfile("http://i4.ytimg.com/vi/$the_id/default.jpg"); }
【问题讨论】:
标签: php apache .htaccess mod-rewrite url-rewriting