.htaccess使用rewritengine制作一个php图像到png

时间:2016-01-09 11:21:37

标签: php .htaccess mod-rewrite

我有一个PHP脚本会创建一个图像,但我想改为.png文件。

以下是一个例子:

http://www.example.com/signature.php?username=Kevin

进入这个:

http://www.example.com/signature.png?username=Kevin

我在.htaccess文件中尝试了以下内容,但没有用。

RewriteEngine On
RewriteRule ^signature.png$ signature.php?username=$1 [L]

我需要在.htaccess文件中更改哪些内容才能使其正常工作,或者这是不可能的?

1 个答案:

答案 0 :(得分:1)

您可以使用此规则:

lbl.["text"]

Options -MultiViews RewriteEngine On RewriteRule ^(signature)\.png$ $1.php [L,NC] 将自动转移到目标网址。