Now I have an Nginx rewrite rule that cannot be successfully transferred to OpenLiteSpeed for use. Please help:
What I converted is:
But it was completely unsuccessful. Please help me. I have been struggling for a long time!
NGINX:
rewrite ^/timthumb/w_([0-9]+)/h_([0-9]+)/q_([0-9]+)/zc_([0-9])/a_([a-z]+)/([0-9A-Za-z_\-]+)\.([0-9a-z]+)$ /wp-content/themes/wordpress-theme-puock-2.7.0/timthumb.php?w=$1&h=$2&q=$3&zc=$4&a=$5&src=$6;
Apache config:
RewriteEngine On
RewriteRule "^/timthumb/w_([0-9]+)/h_([0-9]+)/q_([0-9]+)/zc_([0-9])/a_([a-z]+)/([0-9A-Za-z_\-]+)\.([0-9a-z]+)$" "/wp-content/themes/wordpress-theme-puock-2.7.0/timthumb.php?w=$1&h=$2&q=$3&zc=$4&a=$5&src=$6" [R]