将 TimThumb 用于您的图像,可能会导致一些.. 看起来凌乱(并且避免面对它,无法实现)的代码。观察..
<img alt="Camping" src="/timthumb.php?src=/images/feb/image_001.jpg&w=250&h=250&" />
为什么不摆脱混乱并使用一些时髦的 .htaccess 重定向呢?
<img alt="Camping" src="/images/feb/250/image_001.jpg" />
是不是看起来好多了?您美妙的露营图像现在宽度设置为 250 像素,高度保持在正确的比例。
TimThumb htaccess rewrite 实现这一点非常容易和简单!更新您的 .htaccess 文件,就像这样。
# With your other RewriteCond rules
RewriteCond %{REQUEST_URI} !^/(images) [NC]
RewriteRule ^(.+)/$ /$1 [R,L]
# Width
RewriteRule ^images/([a-zA-Z0-9-]+)/([0-9]+)/([a-z0-9.]+)?$ /tt.php?src=/images/$1/$3&w=$2
如果您没有任何类型的文件夹系统并且您的所有图像都只是放入图像文件夹中,您可以使用以下内容
RewriteRule ^images/([0-9]+)/([a-z0-9.]+)?$ /tt.php?src=/images/$2&w=$1
资源