我制作了一个构建图像的 php 脚本,我想使用 htaccess 获取一个不错的 url
该脚本根据一些变量构建图像:
例如:
All options given
php url: image.php?width=300&height=400&color=red&var1=something&var2=somethingelse
nice url: image-w300-h400-cred-v1something-v2something.png
Few options given
php url: image.php?var1=something&color=black
nice url: image-v1something-cblack.png
我知道如何为每个组合构建一个 rewriteRule,但没有办法自动化吗?