gpt4 book ai didi

php - 通过 .htaccess 访问图像时执行脚本

转载 作者:行者123 更新时间:2023-12-04 06:32:25 24 4
gpt4 key购买 nike

如果您访问服务器上的图像,是否可以通过使用 .htaccess 单独执行脚本,例如(伪代码):

-> user views http://www.mywebsite.com/images/systems_analysis.jpg;
-> .htaccess gets the image name (systems_analysis.jpg);
-> then executes viewed.php?img=systems_analysis.jpg;
-> leaving viewed.php to process with the script.

因此,当正在查看图像时,它将执行 viewed.php只有在 /images/ 中访问图像时才会执行的脚本目录。

最佳答案

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} .*jpg$|.*gif$|.*png$ [NC]
RewriteRule (.*) /viewed.php?image=$1

上面的 .htaccess 条目将重写以下请求:

yourdomain.com/some_image.jpg -> youdomain.com/viewed.php?image=some_image

关于php - 通过 .htaccess 访问图像时执行脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5247232/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com