|
Posted by AnrDaemon on 10/27/07 09:43
Greetings, Kevin Blount.
In reply to Your message dated Saturday, October 27, 2007, 01:39:14,
KB> AddType application/x-httpd-php .png
Useless.
KB> RewriteEngine On
KB> RewriteRule .png /phpsigs/create-sig.php
You forgot [QSA] flag. (Query String Append)
So,
RewriteEngine On
RewriteRule \.png$ /phpsigs/create-sig.php [QSA,L]
KB> basically just redirects all .PNG requests to a single PHP script, I
KB> can then grab the file name, etc and personalize the image being
KB> returned.
--
Sincerely Yours, AnrDaemon <anrdaemon@freemail.ru>
Navigation:
[Reply to this message]
|