0

因为就像一天,我的 timthumb 停止工作

但是确实发现它可能与modsecurity有关。

所以以下,直到一天前才起作用。

http://www.HOST.com/wp-content/themes/THEME/scripts/timthumb.php?src=http://www.HOST.com/wp-content/uploads/2013/05/image.jpg&w= 70&h=50&zc=1&q=100

现在只能使用

http://www.HOST.com/wp-content/themes/THEME/scripts/timthumb.php?src=/wp-content/uploads/2013/05/image.jpg&w=70&h=50&zc=1&q=100

试着把它放在我的 htaccess 中,但没有改变

# WPhtc: Begin Custom htaccess
RewriteCond %{REQUEST_URI} !^/(timthumb) [NC]
RewriteRule ^scripts/timthumb.php?src=/(.*)x(.*)/r/(.*) scripts/timthumb.php?src=http://www.HOST.com/$3&h=$2&w=$1&c=1
# WPhtc: End Custom htaccess
4

1 回答 1

2

将 TimThumb 用于您的图像,可能会导致一些.. 看起来凌乱(并且避免面对它,无法实现)的代码。观察..

<img alt="Camping" src="/timthumb.php?src=/images/feb/image_001.jpg&amp;w=250&amp;h=250&amp;" />

为什么不摆脱混乱并使用一些时髦的 .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&amp;w=$2

如果您没有任何类型的文件夹系统并且您的所有图像都只是放入图像文件夹中,您可以使用以下内容

RewriteRule ^images/([0-9]+)/([a-z0-9.]+)?$ /tt.php?src=/images/$2&amp;w=$1

资源

于 2013-08-06T10:44:57.993 回答